[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20220911084241.196091-1-xiujianfeng@huawei.com>
Date: Sun, 11 Sep 2022 16:42:41 +0800
From: Xiu Jianfeng <xiujianfeng@...wei.com>
To: <mpe@...erman.id.au>, <npiggin@...il.com>,
<christophe.leroy@...roup.eu>, <willy@...radead.org>,
<zuoqilin@...ong.com>
CC: <linuxppc-dev@...ts.ozlabs.org>, <linux-kernel@...r.kernel.org>
Subject: [PATCH] powerpc: pseries: add __init/__exit annotations to module init/exit funcs
Add missing __init/__exit annotations to module init/exit funcs.
Signed-off-by: Xiu Jianfeng <xiujianfeng@...wei.com>
---
arch/powerpc/platforms/pseries/cmm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/powerpc/platforms/pseries/cmm.c b/arch/powerpc/platforms/pseries/cmm.c
index 5f4037c1d7fe..3c56c5cb0fa9 100644
--- a/arch/powerpc/platforms/pseries/cmm.c
+++ b/arch/powerpc/platforms/pseries/cmm.c
@@ -565,7 +565,7 @@ static void cmm_balloon_compaction_init(void)
* Return value:
* 0 on success / other on failure
**/
-static int cmm_init(void)
+static int __init cmm_init(void)
{
int rc;
@@ -615,7 +615,7 @@ static int cmm_init(void)
* Return value:
* nothing
**/
-static void cmm_exit(void)
+static void __exit cmm_exit(void)
{
if (cmm_thread_ptr)
kthread_stop(cmm_thread_ptr);
--
2.17.1
Powered by blists - more mailing lists