From: kernel test robot <lkp@intel.com>
To: Heiko Stuebner <heiko@sntech.de>, davem@davemloft.net, kuba@kernel.org
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
robh+dt@kernel.org, andrew@lunn.ch, f.fainelli@gmail.com,
hkallweit1@gmail.com, linux@armlinux.org.uk,
netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 3/3] net: phy: mscc: handle the clkout control on some phy variants
Date: Fri, 19 Jun 2020 08:50:04 +0800 [thread overview]
Message-ID: <202006190814.NRJqIK4e%lkp@intel.com> (raw)
In-Reply-To: <20200618121139.1703762-4-heiko@sntech.de>
[-- Attachment #1: Type: text/plain, Size: 2421 bytes --]
Hi Heiko,
I love your patch! Yet something to improve:
[auto build test ERROR on robh/for-next]
[also build test ERROR on sparc-next/master net-next/master net/master linus/master v5.8-rc1 next-20200618]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Heiko-Stuebner/add-clkout-support-to-mscc-phys/20200618-201732
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 487ca07fcc75d52755c9fe2ee05bcb3b6eeeec44)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from drivers/net/phy/mscc/mscc_macsec.c:17:
>> drivers/net/phy/mscc/mscc.h:371:16: error: field has incomplete type 'struct clk_hw'
struct clk_hw clkout_hw;
^
drivers/net/phy/mscc/mscc.h:371:9: note: forward declaration of 'struct clk_hw'
struct clk_hw clkout_hw;
^
1 error generated.
vim +371 drivers/net/phy/mscc/mscc.h
354
355 struct vsc8531_private {
356 int rate_magic;
357 u16 supp_led_modes;
358 u32 leds_mode[MAX_LEDS];
359 u8 nleds;
360 const struct vsc85xx_hw_stat *hw_stats;
361 u64 *stats;
362 int nstats;
363 /* PHY address within the package. */
364 u8 addr;
365 /* For multiple port PHYs; the MDIO address of the base PHY in the
366 * package.
367 */
368 unsigned int base_addr;
369
370 #ifdef CONFIG_COMMON_CLK
> 371 struct clk_hw clkout_hw;
372 #endif
373 u32 clkout_rate;
374 int clkout_enabled;
375
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 75292 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v5 3/3] net: phy: mscc: handle the clkout control on some phy variants
Date: Fri, 19 Jun 2020 08:50:04 +0800 [thread overview]
Message-ID: <202006190814.NRJqIK4e%lkp@intel.com> (raw)
In-Reply-To: <20200618121139.1703762-4-heiko@sntech.de>
[-- Attachment #1: Type: text/plain, Size: 2487 bytes --]
Hi Heiko,
I love your patch! Yet something to improve:
[auto build test ERROR on robh/for-next]
[also build test ERROR on sparc-next/master net-next/master net/master linus/master v5.8-rc1 next-20200618]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Heiko-Stuebner/add-clkout-support-to-mscc-phys/20200618-201732
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 487ca07fcc75d52755c9fe2ee05bcb3b6eeeec44)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from drivers/net/phy/mscc/mscc_macsec.c:17:
>> drivers/net/phy/mscc/mscc.h:371:16: error: field has incomplete type 'struct clk_hw'
struct clk_hw clkout_hw;
^
drivers/net/phy/mscc/mscc.h:371:9: note: forward declaration of 'struct clk_hw'
struct clk_hw clkout_hw;
^
1 error generated.
vim +371 drivers/net/phy/mscc/mscc.h
354
355 struct vsc8531_private {
356 int rate_magic;
357 u16 supp_led_modes;
358 u32 leds_mode[MAX_LEDS];
359 u8 nleds;
360 const struct vsc85xx_hw_stat *hw_stats;
361 u64 *stats;
362 int nstats;
363 /* PHY address within the package. */
364 u8 addr;
365 /* For multiple port PHYs; the MDIO address of the base PHY in the
366 * package.
367 */
368 unsigned int base_addr;
369
370 #ifdef CONFIG_COMMON_CLK
> 371 struct clk_hw clkout_hw;
372 #endif
373 u32 clkout_rate;
374 int clkout_enabled;
375
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 75292 bytes --]
next prev parent reply other threads:[~2020-06-19 0:51 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-18 12:11 [PATCH v5 0/3] add clkout support to mscc phys Heiko Stuebner
2020-06-18 12:11 ` [PATCH v5 1/3] net: phy: mscc: move shared probe code into a helper Heiko Stuebner
2020-06-18 12:11 ` [PATCH v5 2/3] dt-bindings: net: mscc-vsc8531: add optional clock properties Heiko Stuebner
2020-06-19 5:01 ` Florian Fainelli
2020-06-19 6:46 ` Heiko Stuebner
2020-06-18 12:11 ` [PATCH v5 3/3] net: phy: mscc: handle the clkout control on some phy variants Heiko Stuebner
2020-06-18 13:28 ` Andrew Lunn
2020-06-18 13:41 ` Russell King - ARM Linux admin
2020-06-18 15:41 ` Heiko Stübner
2020-06-18 15:47 ` Russell King - ARM Linux admin
2020-06-18 16:01 ` Heiko Stübner
2020-06-18 16:40 ` Russell King - ARM Linux admin
2020-06-22 9:19 ` Heiko Stübner
2020-06-18 15:49 ` Jakub Kicinski
2020-06-19 0:50 ` kernel test robot [this message]
2020-06-19 0:50 ` kernel test robot
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=202006190814.NRJqIK4e%lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew@lunn.ch \
--cc=clang-built-linux@googlegroups.com \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=heiko@sntech.de \
--cc=hkallweit1@gmail.com \
--cc=kbuild-all@lists.01.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=robh+dt@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.