linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Sascha Hauer <s.hauer@pengutronix.de>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org,
	devicetree@vger.kernel.org, kernel@pengutronix.de,
	"Linus Walleij" <linus.walleij@linaro.org>,
	linux-gpio@vger.kernel.org,
	"Alvin Šipraga" <alsi@bang-olufsen.dk>,
	"Sascha Hauer" <s.hauer@pengutronix.de>
Subject: Re: [PATCH v6 2/2] clk: add TI CDCE6214 clock driver
Date: Fri, 5 Sep 2025 05:10:26 +0800	[thread overview]
Message-ID: <202509050404.kfqjYP6B-lkp@intel.com> (raw)
In-Reply-To: <20250903-clk-cdce6214-v6-2-b2cc0a6f282b@pengutronix.de>

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@intel.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

      reply	other threads:[~2025-09-04 21:11 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-03 13:55 [PATCH v6 0/2] clk: add support for TI CDCE6214 Sascha Hauer
2025-09-03 13:55 ` [PATCH v6 1/2] dt-bindings: clock: add TI CDCE6214 binding Sascha Hauer
2025-09-04  7:18   ` Krzysztof Kozlowski
2025-09-04  7:34     ` Sascha Hauer
2025-09-04  9:43       ` Krzysztof Kozlowski
2025-09-04 11:31         ` Sascha Hauer
2025-09-04 19:00   ` Rob Herring
2025-09-03 13:55 ` [PATCH v6 2/2] clk: add TI CDCE6214 clock driver Sascha Hauer
2025-09-04 21:10   ` kernel test robot [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202509050404.kfqjYP6B-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=alsi@bang-olufsen.dk \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=kernel@pengutronix.de \
    --cc=krzk@kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=mturquette@baylibre.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=robh@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=sboyd@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).