On Fri, Oct 1, 2021 at 4:04 AM Jani Nikula <jani.nikula@xxxxxxxxxxxxxxx> wrote: > > Anyway, we've got > > subdir-ccflags-y += $(call cc-disable-warning, missing-field-initializers) > subdir-ccflags-y += $(call cc-disable-warning, initializer-overrides) > > in drivers/gpu/drm/i915/Makefile, so I wonder why they're not respected. You do have to be super careful with `:=` assignment in Make; generally folks mean to use `+=` and end up overwriting the existing KBUILD_CFLAGS. I'm not sure if that's the issue here, but it's worth an audit of your Makefiles. -- Thanks, ~Nick Desaulniers