]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kbuild: clang: Disable 'address-of-packed-member' warning
authorMatthias Kaehlcke <mka@chromium.org>
Fri, 21 Apr 2017 21:39:30 +0000 (14:39 -0700)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 21 Jun 2017 23:52:21 +0000 (08:52 +0900)
clang generates plenty of these warnings in different parts of the code,
to an extent that the warnings are little more than noise. Disable the
'address-of-packed-member' warning.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Makefile

index 0afd7f3c22b23a0671fd26f4129c3120cc7ca3d7..58d7f9cc73caa8f867f2e9012dfb836bba3a01cc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -698,6 +698,7 @@ KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
 KBUILD_CFLAGS += $(call cc-disable-warning, unused-variable)
 KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
 KBUILD_CFLAGS += $(call cc-disable-warning, gnu)
+KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
 # Quiet clang warning: comparison of unsigned expression < 0 is always false
 KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
 # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the