Hi Andy, kernel test robot noticed the following build errors: [auto build test ERROR on linusw-pinctrl/devel] [also build test ERROR on linusw-pinctrl/for-next next-20231122] [cannot apply to geert-renesas-drivers/renesas-pinctrl pinctrl-samsung/for-next linus/master v6.7-rc2] [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/Andy-Shevchenko/pinctrl-equilibrium-Convert-to-use-struct-pingroup/20231123-005932 base: https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git devel patch link: https://lore.kernel.org/r/20231122164040.2262742-9-andriy.shevchenko%40linux.intel.com patch subject: [PATCH v1 08/17] pinctrl: core: Embed struct pingroup into struct group_desc config: i386-buildonly-randconfig-004-20231123 (https://download.01.org/0day-ci/archive/20231123/202311230849.YPJuLoNP-lkp@xxxxxxxxx/config) compiler: gcc-12 (Debian 12.2.0-14) 12.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231123/202311230849.YPJuLoNP-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/202311230849.YPJuLoNP-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): In file included from drivers/pinctrl/mediatek/pinctrl-moore.h:21, from drivers/pinctrl/mediatek/pinctrl-mt7981.c:9: >> drivers/pinctrl/mediatek/../core.h:217:21: error: initializer element is not constant 217 | (struct group_desc) { \ | ^ drivers/pinctrl/mediatek/pinctrl-moore.h:41:9: note: in expansion of macro 'PINCTRL_GROUP_DESC' 41 | PINCTRL_GROUP_DESC(name, id##_pins, ARRAY_SIZE(id##_pins), id##_funcs) | ^~~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/pinctrl-mt7981.c:795:9: note: in expansion of macro 'PINCTRL_PIN_GROUP' 795 | PINCTRL_PIN_GROUP("wa_aice1", mt7981_wa_aice1), | ^~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/../core.h:217:21: note: (near initialization for 'mt7981_groups') 217 | (struct group_desc) { \ | ^ drivers/pinctrl/mediatek/pinctrl-moore.h:41:9: note: in expansion of macro 'PINCTRL_GROUP_DESC' 41 | PINCTRL_GROUP_DESC(name, id##_pins, ARRAY_SIZE(id##_pins), id##_funcs) | ^~~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/pinctrl-mt7981.c:795:9: note: in expansion of macro 'PINCTRL_PIN_GROUP' 795 | PINCTRL_PIN_GROUP("wa_aice1", mt7981_wa_aice1), | ^~~~~~~~~~~~~~~~~ -- In file included from drivers/pinctrl/mediatek/pinctrl-moore.h:21, from drivers/pinctrl/mediatek/pinctrl-mt7623.c:11: >> drivers/pinctrl/mediatek/../core.h:217:21: error: initializer element is not constant 217 | (struct group_desc) { \ | ^ drivers/pinctrl/mediatek/pinctrl-moore.h:41:9: note: in expansion of macro 'PINCTRL_GROUP_DESC' 41 | PINCTRL_GROUP_DESC(name, id##_pins, ARRAY_SIZE(id##_pins), id##_funcs) | ^~~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/pinctrl-mt7623.c:1079:9: note: in expansion of macro 'PINCTRL_PIN_GROUP' 1079 | PINCTRL_PIN_GROUP("aud_ext_clk0", mt7623_aud_ext_clk0), | ^~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/../core.h:217:21: note: (near initialization for 'mt7623_groups') 217 | (struct group_desc) { \ | ^ drivers/pinctrl/mediatek/pinctrl-moore.h:41:9: note: in expansion of macro 'PINCTRL_GROUP_DESC' 41 | PINCTRL_GROUP_DESC(name, id##_pins, ARRAY_SIZE(id##_pins), id##_funcs) | ^~~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/pinctrl-mt7623.c:1079:9: note: in expansion of macro 'PINCTRL_PIN_GROUP' 1079 | PINCTRL_PIN_GROUP("aud_ext_clk0", mt7623_aud_ext_clk0), | ^~~~~~~~~~~~~~~~~ -- In file included from drivers/pinctrl/mediatek/pinctrl-moore.h:21, from drivers/pinctrl/mediatek/pinctrl-mt7629.c:9: >> drivers/pinctrl/mediatek/../core.h:217:21: error: initializer element is not constant 217 | (struct group_desc) { \ | ^ drivers/pinctrl/mediatek/pinctrl-moore.h:41:9: note: in expansion of macro 'PINCTRL_GROUP_DESC' 41 | PINCTRL_GROUP_DESC(name, id##_pins, ARRAY_SIZE(id##_pins), id##_funcs) | ^~~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/pinctrl-mt7629.c:312:9: note: in expansion of macro 'PINCTRL_PIN_GROUP' 312 | PINCTRL_PIN_GROUP("ephy_leds", mt7629_ephy_leds), | ^~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/../core.h:217:21: note: (near initialization for 'mt7629_groups') 217 | (struct group_desc) { \ | ^ drivers/pinctrl/mediatek/pinctrl-moore.h:41:9: note: in expansion of macro 'PINCTRL_GROUP_DESC' 41 | PINCTRL_GROUP_DESC(name, id##_pins, ARRAY_SIZE(id##_pins), id##_funcs) | ^~~~~~~~~~~~~~~~~~ drivers/pinctrl/mediatek/pinctrl-mt7629.c:312:9: note: in expansion of macro 'PINCTRL_PIN_GROUP' 312 | PINCTRL_PIN_GROUP("ephy_leds", mt7629_ephy_leds), | ^~~~~~~~~~~~~~~~~ vim +217 drivers/pinctrl/mediatek/../core.h c7059c5ac70aea1 Tony Lindgren 2016-12-27 214 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 215 /* Convenience macro to define a generic pin group descriptor */ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 216 #define PINCTRL_GROUP_DESC(_name, _pins, _num_pins, _data) \ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 @217 (struct group_desc) { \ 4930128932e4e5e Andy Shevchenko 2023-11-22 218 .grp = PINCTRL_PINGROUP(_name, _pins, _num_pins), \ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 219 .name = _name, \ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 220 .pins = _pins, \ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 221 .num_pins = _num_pins, \ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 222 .data = _data, \ 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 223 } 3bea9da5ae4cf43 Andy Shevchenko 2023-11-22 224 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki