diff options
author | Clément Léger <cleger@rivosinc.com> | 2023-10-04 17:14:03 +0200 |
---|---|---|
committer | Palmer Dabbelt <palmer@rivosinc.com> | 2023-11-01 08:34:57 -0700 |
commit | 90b11b470b2e88ff583e04be109e6441cb69f54d (patch) | |
tree | 6fc764c58c5703018c9cecdc619293508862cc65 /arch | |
parent | bc38f61313d316d74c16ce7287d6dba2f42502c9 (diff) | |
download | lwn-90b11b470b2e88ff583e04be109e6441cb69f54d.tar.gz lwn-90b11b470b2e88ff583e04be109e6441cb69f54d.zip |
riscv: annotate check_unaligned_access_boot_cpu() with __init
This function is solely called as an initcall, thus annotate it with
__init.
Signed-off-by: Clément Léger <cleger@rivosinc.com>
Reviewed-by: Evan Green <evan@rivosinc.com>
Link: https://lore.kernel.org/r/20231004151405.521596-7-cleger@rivosinc.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/riscv/kernel/cpufeature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c index 1cfbba65d11a..356e5677eeb1 100644 --- a/arch/riscv/kernel/cpufeature.c +++ b/arch/riscv/kernel/cpufeature.c @@ -645,7 +645,7 @@ out: __free_pages(page, get_order(MISALIGNED_BUFFER_SIZE)); } -static int check_unaligned_access_boot_cpu(void) +static int __init check_unaligned_access_boot_cpu(void) { check_unaligned_access(0); return 0; |