diff options
author | Matthias Kaehlcke <mka@chromium.org> | 2017-04-21 17:39:30 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-06-21 19:52:21 -0400 |
commit | bfb38988c51e440fd7062ddf3157f7d8b1dd5d70 (patch) | |
tree | 288ab0e0601a70bee476c8bedb29a072265eba6e /Makefile | |
parent | f8224f7f4801733a46f332d9eb498234ff1ddac2 (diff) |
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 <mka@chromium.org>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -698,6 +698,7 @@ KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,) | |||
698 | KBUILD_CFLAGS += $(call cc-disable-warning, unused-variable) | 698 | KBUILD_CFLAGS += $(call cc-disable-warning, unused-variable) |
699 | KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier) | 699 | KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier) |
700 | KBUILD_CFLAGS += $(call cc-disable-warning, gnu) | 700 | KBUILD_CFLAGS += $(call cc-disable-warning, gnu) |
701 | KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member) | ||
701 | # Quiet clang warning: comparison of unsigned expression < 0 is always false | 702 | # Quiet clang warning: comparison of unsigned expression < 0 is always false |
702 | KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare) | 703 | KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare) |
703 | # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the | 704 | # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the |