From: Matthias Kaehlcke Date: Fri, 21 Apr 2017 21:39:30 +0000 (-0700) Subject: kbuild: clang: Disable 'address-of-packed-member' warning X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bfb38988c51e440fd7062ddf3157f7d8b1dd5d70;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git kbuild: clang: Disable 'address-of-packed-member' warning 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 Reviewed-by: Douglas Anderson Signed-off-by: Masahiro Yamada --- diff --git a/Makefile b/Makefile index 0afd7f3c22b2..58d7f9cc73ca 100644 --- 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