From: kernel test robot <lkp@intel.com>
To: dongxuyang@eswincomputing.com, mturquette@baylibre.com,
sboyd@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
troy.mitchell@linux.dev, bmasney@redhat.com
Cc: oe-kbuild-all@lists.linux.dev, ningyu@eswincomputing.com,
linmin@eswincomputing.com, huangyifeng@eswincomputing.com,
pinkesh.vaghela@einfochips.com, ganboing@gmail.com,
marcel@ziswiler.com, Xuyang Dong <dongxuyang@eswincomputing.com>
Subject: Re: [PATCH v10 2/3] clock: eswin: Add eic7700 clock driver
Date: Fri, 6 Feb 2026 05:45:34 +0800 [thread overview]
Message-ID: <202602060520.p4Hg35Ja-lkp@intel.com> (raw)
In-Reply-To: <20260205093453.1143-1-dongxuyang@eswincomputing.com>
Hi,
kernel test robot noticed the following build errors:
[auto build test ERROR on linus/master]
[also build test ERROR on v6.19-rc8 next-20260205]
[cannot apply to clk/clk-next]
[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/dongxuyang-eswincomputing-com/dt-bindings-clock-eswin-Documentation-for-eic7700-SoC/20260205-174013
base: linus/master
patch link: https://lore.kernel.org/r/20260205093453.1143-1-dongxuyang%40eswincomputing.com
patch subject: [PATCH v10 2/3] clock: eswin: Add eic7700 clock driver
config: arc-randconfig-r053-20260206 (https://download.01.org/0day-ci/archive/20260206/202602060520.p4Hg35Ja-lkp@intel.com/config)
compiler: arc-linux-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260206/202602060520.p4Hg35Ja-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/202602060520.p4Hg35Ja-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/clk/eswin/clk.c: In function 'eswin_clk_register_clks':
>> drivers/clk/eswin/clk.c:519:4: error: a label can only be part of a statement and a declaration is not a statement
const struct eswin_fixed_factor_clock *factor;
^~~~~
drivers/clk/eswin/clk.c:528:4: error: a label can only be part of a statement and a declaration is not a statement
const struct eswin_mux_clock *mux = &info->data.mux;
^~~~~
drivers/clk/eswin/clk.c:538:4: error: a label can only be part of a statement and a declaration is not a statement
const struct eswin_divider_clock *div = &info->data.div;
^~~~~
drivers/clk/eswin/clk.c:554:4: error: a label can only be part of a statement and a declaration is not a statement
const struct eswin_gate_clock *gate = &info->data.gate;
^~~~~
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for NET_SELFTESTS
Depends on [n]: NET [=y] && PHYLIB [=y] && INET [=n]
Selected by [m]:
- AMD_XGBE [=m] && NETDEVICES [=y] && ETHERNET [=y] && NET_VENDOR_AMD [=y] && (OF_ADDRESS [=y] || ACPI || PCI [=n]) && HAS_IOMEM [=y] && (X86 || ARM64 || COMPILE_TEST [=y]) && PTP_1588_CLOCK_OPTIONAL [=m]
vim +519 drivers/clk/eswin/clk.c
506
507 int eswin_clk_register_clks(struct device *dev, struct eswin_clk_info *clks,
508 int nums, struct eswin_clock_data *data)
509 {
510 struct eswin_clk_info *info;
511 const struct clk_hw *phw = NULL;
512 struct clk_hw *hw;
513 int i;
514
515 for (i = 0; i < nums; i++) {
516 info = &clks[i];
517 switch (info->type) {
518 case CLK_FIXED_FACTOR:
> 519 const struct eswin_fixed_factor_clock *factor;
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-02-05 21:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-05 9:33 [PATCH v10 0/3] Add driver support for ESWIN eic700 SoC clock controller dongxuyang
2026-02-05 9:34 ` [PATCH v10 1/3] dt-bindings: clock: eswin: Documentation for eic7700 SoC dongxuyang
2026-02-05 9:34 ` [PATCH v10 2/3] clock: eswin: Add eic7700 clock driver dongxuyang
2026-02-05 21:45 ` kernel test robot [this message]
2026-02-05 9:35 ` [PATCH v10 3/3] MAINTAINERS: Add entry for ESWIN EIC7700 " dongxuyang
2026-02-06 0:30 ` [PATCH v10 0/3] Add driver support for ESWIN eic700 SoC clock controller Marcel Ziswiler
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=202602060520.p4Hg35Ja-lkp@intel.com \
--to=lkp@intel.com \
--cc=bmasney@redhat.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dongxuyang@eswincomputing.com \
--cc=ganboing@gmail.com \
--cc=huangyifeng@eswincomputing.com \
--cc=krzk+dt@kernel.org \
--cc=linmin@eswincomputing.com \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcel@ziswiler.com \
--cc=mturquette@baylibre.com \
--cc=ningyu@eswincomputing.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pinkesh.vaghela@einfochips.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=troy.mitchell@linux.dev \
/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