diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-01-07 01:12:13 +0900 |
---|---|---|
committer | Palmer Dabbelt <palmer@rivosinc.com> | 2023-01-19 16:37:11 -0800 |
commit | 5b89c6f9b2df2b7cf6da8e0b2b87c8995b378cad (patch) | |
tree | 7bd43fcc83b18432049bb05284f0b17c7de81951 /COPYING | |
parent | 6d0cc1b1f22adb254408a42043d3939bed65545d (diff) | |
download | linux-5b89c6f9b2df2b7cf6da8e0b2b87c8995b378cad.tar.bz2 |
riscv: fix -Wundef warning for CONFIG_RISCV_BOOT_SPINWAIT
Since commit 80b6093b55e3 ("kbuild: add -Wundef to KBUILD_CPPFLAGS
for W=1 builds"), building with W=1 detects misuse of #if.
$ make W=1 ARCH=riscv CROSS_COMPILE=riscv64-linux-gnu- arch/riscv/kernel/
[snip]
AS arch/riscv/kernel/head.o
arch/riscv/kernel/head.S:329:5: warning: "CONFIG_RISCV_BOOT_SPINWAIT" is not defined, evaluates to 0 [-Wundef]
329 | #if CONFIG_RISCV_BOOT_SPINWAIT
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
CONFIG_RISCV_BOOT_SPINWAIT is a bool option. #ifdef should be used.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Fixes: 2ffc48fc7071 ("RISC-V: Move spinwait booting method to its own config")
Link: https://lore.kernel.org/r/20230106161213.2374093-1-masahiroy@kernel.org
Cc: stable@vger.kernel.org
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'COPYING')
0 files changed, 0 insertions, 0 deletions