]> Git Repo - linux.git/commitdiff
arm64: armv8_deprecated: fix unused-function error
authorRen Zhijie <[email protected]>
Thu, 24 Nov 2022 02:24:29 +0000 (02:24 +0000)
committerWill Deacon <[email protected]>
Fri, 25 Nov 2022 12:16:22 +0000 (12:16 +0000)
If CONFIG_SWP_EMULATION is not set and
CONFIG_CP15_BARRIER_EMULATION is not set,
aarch64-linux-gnu complained about unused-function :

arch/arm64/kernel/armv8_deprecated.c:67:21: error: ‘aarch32_check_condition’ defined but not used [-Werror=unused-function]
 static unsigned int aarch32_check_condition(u32 opcode, u32 psr)
                     ^~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors

To fix this warning, modify aarch32_check_condition() with __maybe_unused.

Fixes: 0c5f416219da ("arm64: armv8_deprecated: move aarch32 helper earlier")
Signed-off-by: Ren Zhijie <[email protected]>
Acked-by: Mark Rutland <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Will Deacon <[email protected]>
arch/arm64/kernel/armv8_deprecated.c

index ed0788cf6bbb22629568dab576c9d56eab10a529..8a9052cf301320035cab7aafc9f81902f26d0a67 100644 (file)
@@ -64,7 +64,7 @@ struct insn_emulation {
 
 #define        ARM_OPCODE_CONDITION_UNCOND     0xf
 
-static unsigned int aarch32_check_condition(u32 opcode, u32 psr)
+static unsigned int __maybe_unused aarch32_check_condition(u32 opcode, u32 psr)
 {
        u32 cc_bits  = opcode >> 28;
 
This page took 0.061703 seconds and 4 git commands to generate.