tree: https://github.com/ammarfaizi2/linux-block stable/linux-stable-rc/queue/6.0 head: ec63111d1570d6820dca69324f0df48fcb5d37f7 commit: be43a02bf3bcc42215c73add8bfb201e9f8eed96 [96/101] drm/i915: Remove non-existent pipes from bigjoiner pipe mask config: x86_64-defconfig compiler: gcc-11 (Debian 11.3.0-8) 11.3.0 reproduce (this is a W=1 build): # https://github.com/ammarfaizi2/linux-block/commit/be43a02bf3bcc42215c73add8bfb201e9f8eed96 git remote add ammarfaizi2-block https://github.com/ammarfaizi2/linux-block git fetch --no-tags ammarfaizi2-block stable/linux-stable-rc/queue/6.0 git checkout be43a02bf3bcc42215c73add8bfb201e9f8eed96 # save the config file mkdir build_dir && cp config build_dir/.config make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot All errors (new ones prefixed by >>): drivers/gpu/drm/i915/display/intel_display.c: In function 'bigjoiner_pipes': >> drivers/gpu/drm/i915/display/intel_display.c:3729:42: error: 'struct intel_runtime_info' has no member named 'pipe_mask' 3729 | return pipes & RUNTIME_INFO(i915)->pipe_mask; | ^~ drivers/gpu/drm/i915/display/intel_display.c:3730:1: error: control reaches end of non-void function [-Werror=return-type] 3730 | } | ^ cc1: all warnings being treated as errors vim +3729 drivers/gpu/drm/i915/display/intel_display.c 3717 3718 static u8 bigjoiner_pipes(struct drm_i915_private *i915) 3719 { 3720 u8 pipes; 3721 3722 if (DISPLAY_VER(i915) >= 12) 3723 pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D); 3724 else if (DISPLAY_VER(i915) >= 11) 3725 pipes = BIT(PIPE_B) | BIT(PIPE_C); 3726 else 3727 pipes = 0; 3728 > 3729 return pipes & RUNTIME_INFO(i915)->pipe_mask; 3730 } 3731 -- 0-DAY CI Kernel Test Service https://01.org/lkp