[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202509050404.kfqjYP6B-lkp@intel.com>
Date: Fri, 5 Sep 2025 05:10:26 +0800
From: kernel test robot <lkp@...el.com>
To: Sascha Hauer <s.hauer@...gutronix.de>,
Michael Turquette <mturquette@...libre.com>,
Stephen Boyd <sboyd@...nel.org>, Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk@...nel.org>,
Conor Dooley <conor+dt@...nel.org>
Cc: llvm@...ts.linux.dev, oe-kbuild-all@...ts.linux.dev,
linux-clk@...r.kernel.org, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org, kernel@...gutronix.de,
Linus Walleij <linus.walleij@...aro.org>,
linux-gpio@...r.kernel.org,
Alvin Šipraga <alsi@...g-olufsen.dk>,
Sascha Hauer <s.hauer@...gutronix.de>
Subject: Re: [PATCH v6 2/2] clk: add TI CDCE6214 clock driver
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@intel.com/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@intel.com/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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202509050404.kfqjYP6B-lkp@intel.com/
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
Powered by blists - more mailing lists