s390/purgatory: Remove unused '-MD' and unnecessary '-c' flags
authorNathan Chancellor <nathan@kernel.org>
Thu, 12 Jan 2023 03:05:08 +0000 (20:05 -0700)
committerMasahiro Yamada <masahiroy@kernel.org>
Thu, 26 Jan 2023 03:43:05 +0000 (12:43 +0900)
commit66bfe497d044a0dd4505e5179b3874b1a869c0b1
tree2a6ce46131d62d233bd59ea9a19a3fa1e48a04cf
parentfd8589dce8107e2ce62e92f76089654462dd67b4
s390/purgatory: Remove unused '-MD' and unnecessary '-c' flags

When clang's -Qunused-arguments is dropped from KBUILD_CPPFLAGS, it
warns while building objects in the purgatory folder:

  clang-16: error: argument unused during compilation: '-MD' [-Werror,-Wunused-command-line-argument]

'-MMD' is always passed to the preprocessor via c_flags, even when
KBUILD_CFLAGS is overridden in a folder, so clang complains the addition
of '-MD' will be unused. Remove '-MD' to clear up this warning, as it is
unnecessary with '-MMD'.

Additionally, '-c' is also unnecessary, remove it while in the area.

Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Reviewed-by: Sven Schnelle <svens@linux.ibm.com>
Tested-by: Linux Kernel Functional Testing <lkft@linaro.org>
Tested-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
arch/s390/purgatory/Makefile