Commit 8c6e3657 authored by Xiu Jianfeng's avatar Xiu Jianfeng Committed by Catalin Marinas
Browse files

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: default avatarXiu Jianfeng <xiujianfeng@huawei.com>
Link: https://lore.kernel.org/r/20220911034747.132098-1-xiujianfeng@huawei.com


Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent b9dd04a2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)
{
}