2022-09-11 04:49:56

by Xiu Jianfeng

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

Add missing __init/__exit annotations to module init/exit funcs.

Signed-off-by: Xiu Jianfeng <[email protected]>
---
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


2022-09-29 18:23:09

by Catalin Marinas

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

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