-Wmissing-field-initializers is too noisy to be useful on W=1. Let's move it to W=2. Signed-off-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> --- scripts/Makefile.build | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/scripts/Makefile.build b/scripts/Makefile.build index d2b366c..1535a2f 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -62,7 +62,7 @@ endif ifdef KBUILD_ENABLE_EXTRA_GCC_CHECKS warning- := $(empty) -warning-1 := -Wextra -Wunused -Wno-unused-parameter +warning-1 := -Wextra -Wunused -Wno-unused-parameter -Wno-missing-field-initializers warning-1 += -Wmissing-declarations warning-1 += -Wmissing-format-attribute warning-1 += -Wmissing-prototypes @@ -75,6 +75,7 @@ warning-2 += -Wcast-align warning-2 += -Wdisabled-optimization warning-2 += -Wnested-externs warning-2 += -Wshadow +warning-2 += -Wmissing-field-initializers warning-2 += $(call cc-option, -Wlogical-op) warning-3 := -Wbad-function-cast -- 1.7.8.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html