Hi Sascha, kernel test robot noticed the following build errors: [auto build test ERROR on b320789d6883cc00ac78ce83bccbfe7ed58afcf0] url: https://github.com/intel-lab-lkp/linux/commits/Sascha-Hauer/dt-bindings-clock-add-TI-CDCE6214-binding/20250903-215839 base: b320789d6883cc00ac78ce83bccbfe7ed58afcf0 patch link: https://lore.kernel.org/r/20250903-clk-cdce6214-v6-2-b2cc0a6f282b%40pengutronix.de patch subject: [PATCH v6 2/2] clk: add TI CDCE6214 clock driver config: i386-randconfig-014-20250905 (https://download.01.org/0day-ci/archive/20250905/202509050404.kfqjYP6B-lkp@xxxxxxxxx/config) compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250905/202509050404.kfqjYP6B-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/202509050404.kfqjYP6B-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> drivers/clk/clk-cdce6214.c:1537:3: error: field designator 'is_generic' does not refer to any field in type 'const struct pinconf_ops' 1537 | .is_generic = true, | ~^~~~~~~~~~~~~~~~~ >> drivers/clk/clk-cdce6214.c:1549:3: error: field designator 'num_custom_params' does not refer to any field in type 'struct pinctrl_desc' 1549 | .num_custom_params = ARRAY_SIZE(cdce6214_dt_params), | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >> drivers/clk/clk-cdce6214.c:1550:3: error: field designator 'custom_params' does not refer to any field in type 'struct pinctrl_desc' 1550 | .custom_params = cdce6214_dt_params, | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >> drivers/clk/clk-cdce6214.c:1551:3: error: field designator 'custom_conf_items' does not refer to any field in type 'struct pinctrl_desc' 1551 | .custom_conf_items = cdce6214_conf_items, | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 errors generated. vim +1537 drivers/clk/clk-cdce6214.c 1535 1536 static const struct pinconf_ops cdce6214_pinconf_ops = { > 1537 .is_generic = true, 1538 .pin_config_get = cdce6214_pinconf_get, 1539 .pin_config_set = cdce6214_pinconf_set, 1540 }; 1541 1542 static struct pinctrl_desc cdce6214_pdesc = { 1543 .name = "cdce6214-pinctrl", 1544 .pins = cdce6214_pinctrl_pins, 1545 .npins = ARRAY_SIZE(cdce6214_pinctrl_pins), 1546 .pctlops = &rtc_pinctrl_ops, 1547 .owner = THIS_MODULE, 1548 .confops = &cdce6214_pinconf_ops, > 1549 .num_custom_params = ARRAY_SIZE(cdce6214_dt_params), > 1550 .custom_params = cdce6214_dt_params, > 1551 .custom_conf_items = cdce6214_conf_items, 1552 }; 1553 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki