VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Nathan Chancellor <nathan@kernel.org> 2021-04-28 18:23:50 -0700 committer: Masahiro Yamada <masahiroy@kernel.org> 2021-05-02 00:43:35 +0900 commit: 885480b084696331bea61a4f7eba10652999a9c1 parent: 1476fee5c53e24e06cfc436110cdefbc1868e8c1
Commit Summary:
Makefile: Move -Wno-unused-but-set-variable out of GCC only block
Diffstat:
1 file changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9f5a3cac63e7..3597fd75d5b5 100644
--- a/Makefile
+++ b/Makefile
@@ -792,16 +792,16 @@ KBUILD_CFLAGS += -Wno-gnu
 KBUILD_CFLAGS += -mno-global-merge
 else
 
-# These warnings generated too much noise in a regular build.
-# Use make W=1 to enable them (see scripts/Makefile.extrawarn)
-KBUILD_CFLAGS += -Wno-unused-but-set-variable
-
 # Warn about unmarked fall-throughs in switch statement.
 # Disabled for clang while comment to attribute conversion happens and
 # https://github.com/ClangBuiltLinux/linux/issues/636 is discussed.
 KBUILD_CFLAGS += $(call cc-option,-Wimplicit-fallthrough,)
 endif
 
+# These warnings generated too much noise in a regular build.
+# Use make W=1 to enable them (see scripts/Makefile.extrawarn)
+KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
+
 KBUILD_CFLAGS += $(call cc-disable-warning, unused-const-variable)
 ifdef CONFIG_FRAME_POINTER
 KBUILD_CFLAGS	+= -fno-omit-frame-pointer -fno-optimize-sibling-calls