lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202602060520.p4Hg35Ja-lkp@intel.com>
Date: Fri, 6 Feb 2026 05:45:34 +0800
From: kernel test robot <lkp@...el.com>
To: dongxuyang@...incomputing.com, mturquette@...libre.com,
	sboyd@...nel.org, robh@...nel.org, krzk+dt@...nel.org,
	conor+dt@...nel.org, linux-clk@...r.kernel.org,
	devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
	troy.mitchell@...ux.dev, bmasney@...hat.com
Cc: oe-kbuild-all@...ts.linux.dev, ningyu@...incomputing.com,
	linmin@...incomputing.com, huangyifeng@...incomputing.com,
	pinkesh.vaghela@...fochips.com, ganboing@...il.com,
	marcel@...wiler.com, Xuyang Dong <dongxuyang@...incomputing.com>
Subject: Re: [PATCH v10 2/3] clock: eswin: Add eic7700 clock driver

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ