[PATCH] ARM64: reloc_test: add __init/__exit annotations to module init/exit funcs

Xiu Jianfeng posted 1 patch 3 years, 6 months ago
arch/arm64/kernel/reloc_test_core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] ARM64: reloc_test: add __init/__exit annotations to module init/exit funcs
Posted by Xiu Jianfeng 3 years, 6 months ago
Add missing __init/__exit annotations to module init/exit funcs.

Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
---
 arch/arm64/kernel/reloc_test_core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/kernel/reloc_test_core.c b/arch/arm64/kernel/reloc_test_core.c
index e87a2b7f20f6..99f2ffe9fc05 100644
--- a/arch/arm64/kernel/reloc_test_core.c
+++ b/arch/arm64/kernel/reloc_test_core.c
@@ -48,7 +48,7 @@ static struct {
 	{ "R_AARCH64_PREL16",		relative_data16, (u64)&sym64_rel },
 };
 
-static int reloc_test_init(void)
+static int __init reloc_test_init(void)
 {
 	int i;
 
@@ -67,7 +67,7 @@ static int reloc_test_init(void)
 	return 0;
 }
 
-static void reloc_test_exit(void)
+static void __exit reloc_test_exit(void)
 {
 }
 
-- 
2.17.1
Re: [PATCH] ARM64: reloc_test: add __init/__exit annotations to module init/exit funcs
Posted by Catalin Marinas 3 years, 6 months ago
On Sun, 11 Sep 2022 11:47:47 +0800, Xiu Jianfeng wrote:
> Add missing __init/__exit annotations to module init/exit funcs.
> 
> 

Applied to arm64 (for-next/misc), thanks!

[1/1] ARM64: reloc_test: add __init/__exit annotations to module init/exit funcs
      https://git.kernel.org/arm64/c/8c6e3657be6b

-- 
Catalin