Hi Julien, kernel test robot noticed the following build errors: [auto build test ERROR on media-tree/master] [also build test ERROR on linuxtv-media-stage/master next-20240315] [cannot apply to sailus-media-tree/streams linus/master v6.8] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Julien-Massot/media-i2c-st-vgxy61-Use-sub-device-active-state/20240315-165346 base: git://linuxtv.org/media_tree.git master patch link: https://lore.kernel.org/r/20240315085158.1213159-3-julien.massot%40collabora.com patch subject: [PATCH 2/4] media: i2c: st-vgxy61: Add support for embedded data config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240316/202403160651.QB9YWHsu-lkp@xxxxxxxxx/config) compiler: alpha-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240316/202403160651.QB9YWHsu-lkp@xxxxxxxxx/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202403160651.QB9YWHsu-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/media/i2c/st-vgxy61.c: In function 'vgxy61_enum_mbus_code': >> drivers/media/i2c/st-vgxy61.c:709:30: error: 'MEDIA_BUS_FMT_META_8' undeclared (first use in this function); did you mean 'MEDIA_BUS_FMT_Y8_1X8'? 709 | code->code = MEDIA_BUS_FMT_META_8; | ^~~~~~~~~~~~~~~~~~~~ | MEDIA_BUS_FMT_Y8_1X8 drivers/media/i2c/st-vgxy61.c:709:30: note: each undeclared identifier is reported only once for each function it appears in drivers/media/i2c/st-vgxy61.c: In function '__vgxy61_set_fmt': drivers/media/i2c/st-vgxy61.c:1251:26: error: 'MEDIA_BUS_FMT_META_8' undeclared (first use in this function); did you mean 'MEDIA_BUS_FMT_Y8_1X8'? 1251 | meta_fmt->code = MEDIA_BUS_FMT_META_8; | ^~~~~~~~~~~~~~~~~~~~ | MEDIA_BUS_FMT_Y8_1X8 drivers/media/i2c/st-vgxy61.c: In function 'vgxy61_get_frame_desc': drivers/media/i2c/st-vgxy61.c:1309:36: error: 'MEDIA_BUS_FMT_META_8' undeclared (first use in this function); did you mean 'MEDIA_BUS_FMT_Y8_1X8'? 1309 | desc->entry[1].pixelcode = MEDIA_BUS_FMT_META_8; | ^~~~~~~~~~~~~~~~~~~~ | MEDIA_BUS_FMT_Y8_1X8 drivers/media/i2c/st-vgxy61.c: In function 'vgxy61_init_state': >> drivers/media/i2c/st-vgxy61.c:1326:34: error: 'V4L2_SUBDEV_ROUTE_FL_IMMUTABLE' undeclared (first use in this function); did you mean 'V4L2_SUBDEV_ROUTE_FL_ACTIVE'? 1326 | V4L2_SUBDEV_ROUTE_FL_IMMUTABLE, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | V4L2_SUBDEV_ROUTE_FL_ACTIVE drivers/media/i2c/st-vgxy61.c: In function 'vgxy61_probe': >> drivers/media/i2c/st-vgxy61.c:1891:37: error: 'MEDIA_PAD_FL_INTERNAL' undeclared (first use in this function); did you mean 'MEDIA_PAD_FL_SOURCE'? 1891 | MEDIA_PAD_FL_SINK | MEDIA_PAD_FL_INTERNAL; | ^~~~~~~~~~~~~~~~~~~~~ | MEDIA_PAD_FL_SOURCE vim +709 drivers/media/i2c/st-vgxy61.c 698 699 static int vgxy61_enum_mbus_code(struct v4l2_subdev *sd, 700 struct v4l2_subdev_state *sd_state, 701 struct v4l2_subdev_mbus_code_enum *code) 702 { 703 if (code->pad == VGXY61_PAD_META || 704 (code->pad == VGXY61_PAD_SOURCE && 705 code->stream == VGXY61_STREAM_META)) { 706 if (code->index > 0) 707 return -EINVAL; 708 > 709 code->code = MEDIA_BUS_FMT_META_8; 710 return 0; 711 } 712 713 if (code->index >= ARRAY_SIZE(vgxy61_supported_codes)) 714 return -EINVAL; 715 716 code->code = vgxy61_supported_codes[code->index].code; 717 718 return 0; 719 } 720 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki