From: kernel test robot <lkp@intel.com>
To: Maxime Chevallier <maxime.chevallier@bootlin.com>, davem@davemloft.net
Cc: oe-kbuild-all@lists.linux.dev,
"Maxime Chevallier" <maxime.chevallier@bootlin.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
thomas.petazzoni@bootlin.com, "Andrew Lunn" <andrew@lunn.ch>,
"Jakub Kicinski" <kuba@kernel.org>,
"Eric Dumazet" <edumazet@google.com>,
"Paolo Abeni" <pabeni@redhat.com>,
"Russell King" <linux@armlinux.org.uk>,
linux-arm-kernel@lists.infradead.org,
"Christophe Leroy" <christophe.leroy@csgroup.eu>,
"Herve Codina" <herve.codina@bootlin.com>,
"Florian Fainelli" <f.fainelli@gmail.com>,
"Heiner Kallweit" <hkallweit1@gmail.com>,
"Vladimir Oltean" <vladimir.oltean@nxp.com>,
"Marek Behún" <kabel@kernel.org>,
"Köry Maincent" <kory.maincent@bootlin.com>,
"Oleksij Rempel" <o.rempel@pengutronix.de>
Subject: Re: [PATCH net-next 3/7] net: phy: lxt: Mark LXT973 PHYs as having a broken isolate mode
Date: Fri, 13 Sep 2024 13:29:13 +0800 [thread overview]
Message-ID: <202409131315.SEzdGTvD-lkp@intel.com> (raw)
In-Reply-To: <20240911212713.2178943-4-maxime.chevallier@bootlin.com>
Hi Maxime,
kernel test robot noticed the following build warnings:
[auto build test WARNING on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Maxime-Chevallier/net-phy-allow-isolating-PHY-devices/20240912-053106
base: net-next/main
patch link: https://lore.kernel.org/r/20240911212713.2178943-4-maxime.chevallier%40bootlin.com
patch subject: [PATCH net-next 3/7] net: phy: lxt: Mark LXT973 PHYs as having a broken isolate mode
config: x86_64-randconfig-121-20240913 (https://download.01.org/0day-ci/archive/20240913/202409131315.SEzdGTvD-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240913/202409131315.SEzdGTvD-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/202409131315.SEzdGTvD-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/net/phy/lxt.c:331:10: sparse: sparse: Initializer entry defined twice
drivers/net/phy/lxt.c:337:10: sparse: also defined here
drivers/net/phy/lxt.c:343:10: sparse: sparse: Initializer entry defined twice
drivers/net/phy/lxt.c:348:10: sparse: also defined here
vim +331 drivers/net/phy/lxt.c
e13647c158307f Richard Cochran 2010-06-07 307
d5bf9071e71a4d Christian Hohnstaedt 2012-07-04 308 static struct phy_driver lxt97x_driver[] = {
d5bf9071e71a4d Christian Hohnstaedt 2012-07-04 309 {
600991b003039b Uwe Zeisberger 2006-06-25 310 .phy_id = 0x78100000,
00db8189d984d6 Andy Fleming 2005-07-30 311 .name = "LXT970",
600991b003039b Uwe Zeisberger 2006-06-25 312 .phy_id_mask = 0xfffffff0,
dcdecdcfe1fc39 Heiner Kallweit 2019-04-12 313 /* PHY_BASIC_FEATURES */
00db8189d984d6 Andy Fleming 2005-07-30 314 .config_init = lxt970_config_init,
00db8189d984d6 Andy Fleming 2005-07-30 315 .config_intr = lxt970_config_intr,
01c4a00bf34797 Ioana Ciornei 2020-11-13 316 .handle_interrupt = lxt970_handle_interrupt,
d5bf9071e71a4d Christian Hohnstaedt 2012-07-04 317 }, {
600991b003039b Uwe Zeisberger 2006-06-25 318 .phy_id = 0x001378e0,
00db8189d984d6 Andy Fleming 2005-07-30 319 .name = "LXT971",
600991b003039b Uwe Zeisberger 2006-06-25 320 .phy_id_mask = 0xfffffff0,
dcdecdcfe1fc39 Heiner Kallweit 2019-04-12 321 /* PHY_BASIC_FEATURES */
00db8189d984d6 Andy Fleming 2005-07-30 322 .config_intr = lxt971_config_intr,
01c4a00bf34797 Ioana Ciornei 2020-11-13 323 .handle_interrupt = lxt971_handle_interrupt,
5556fdb0c2ea3a Christophe Leroy 2019-05-23 324 .suspend = genphy_suspend,
5556fdb0c2ea3a Christophe Leroy 2019-05-23 325 .resume = genphy_resume,
871d1d6b59802a LEROY Christophe 2012-09-24 326 }, {
871d1d6b59802a LEROY Christophe 2012-09-24 327 .phy_id = 0x00137a10,
871d1d6b59802a LEROY Christophe 2012-09-24 328 .name = "LXT973-A2",
871d1d6b59802a LEROY Christophe 2012-09-24 329 .phy_id_mask = 0xffffffff,
dcdecdcfe1fc39 Heiner Kallweit 2019-04-12 330 /* PHY_BASIC_FEATURES */
871d1d6b59802a LEROY Christophe 2012-09-24 @331 .flags = 0,
871d1d6b59802a LEROY Christophe 2012-09-24 332 .probe = lxt973_probe,
871d1d6b59802a LEROY Christophe 2012-09-24 333 .config_aneg = lxt973_config_aneg,
871d1d6b59802a LEROY Christophe 2012-09-24 334 .read_status = lxt973a2_read_status,
5556fdb0c2ea3a Christophe Leroy 2019-05-23 335 .suspend = genphy_suspend,
5556fdb0c2ea3a Christophe Leroy 2019-05-23 336 .resume = genphy_resume,
c9dd02714c2f91 Maxime Chevallier 2024-09-11 337 .flags = PHY_NO_ISOLATE,
d5bf9071e71a4d Christian Hohnstaedt 2012-07-04 338 }, {
e13647c158307f Richard Cochran 2010-06-07 339 .phy_id = 0x00137a10,
e13647c158307f Richard Cochran 2010-06-07 340 .name = "LXT973",
e13647c158307f Richard Cochran 2010-06-07 341 .phy_id_mask = 0xfffffff0,
dcdecdcfe1fc39 Heiner Kallweit 2019-04-12 342 /* PHY_BASIC_FEATURES */
e13647c158307f Richard Cochran 2010-06-07 343 .flags = 0,
e13647c158307f Richard Cochran 2010-06-07 344 .probe = lxt973_probe,
e13647c158307f Richard Cochran 2010-06-07 345 .config_aneg = lxt973_config_aneg,
5556fdb0c2ea3a Christophe Leroy 2019-05-23 346 .suspend = genphy_suspend,
5556fdb0c2ea3a Christophe Leroy 2019-05-23 347 .resume = genphy_resume,
c9dd02714c2f91 Maxime Chevallier 2024-09-11 348 .flags = PHY_NO_ISOLATE,
d5bf9071e71a4d Christian Hohnstaedt 2012-07-04 349 } };
e13647c158307f Richard Cochran 2010-06-07 350
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-09-13 5:30 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-11 21:27 [PATCH net-next 0/7] Allow controlling PHY loopback and isolate modes Maxime Chevallier
2024-09-11 21:27 ` [PATCH net-next 1/7] net: phy: allow isolating PHY devices Maxime Chevallier
2024-09-12 18:30 ` Florian Fainelli
2024-09-13 7:43 ` Maxime Chevallier
2024-09-11 21:27 ` [PATCH net-next 2/7] net: phy: Allow flagging PHY devices that can't isolate their MII Maxime Chevallier
2024-09-11 21:27 ` [PATCH net-next 3/7] net: phy: lxt: Mark LXT973 PHYs as having a broken isolate mode Maxime Chevallier
2024-09-12 12:24 ` Simon Horman
2024-09-12 12:56 ` Maxime Chevallier
2024-09-13 5:29 ` kernel test robot [this message]
2024-09-11 21:27 ` [PATCH net-next 4/7] net: phy: marvell10g: 88x3310 and 88x3340 don't support " Maxime Chevallier
2024-09-11 21:27 ` [PATCH net-next 5/7] net: phy: introduce ethtool_phy_ops to get and set phy configuration Maxime Chevallier
2024-09-12 4:46 ` Oleksij Rempel
2024-09-12 8:17 ` Maxime Chevallier
2024-09-11 21:27 ` [PATCH net-next 6/7] net: ethtool: phy: allow reporting and setting the phy isolate status Maxime Chevallier
2024-09-11 21:27 ` [PATCH net-next 7/7] netlink: specs: introduce phy-set command along with configurable attributes Maxime Chevallier
2024-09-12 8:15 ` [PATCH net-next 0/7] Allow controlling PHY loopback and isolate modes Maxime Chevallier
2024-09-12 18:21 ` Andrew Lunn
2024-09-12 18:26 ` Florian Fainelli
2024-09-13 7:34 ` Maxime Chevallier
2024-09-13 13:40 ` Andrew Lunn
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=202409131315.SEzdGTvD-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew@lunn.ch \
--cc=christophe.leroy@csgroup.eu \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=f.fainelli@gmail.com \
--cc=herve.codina@bootlin.com \
--cc=hkallweit1@gmail.com \
--cc=kabel@kernel.org \
--cc=kory.maincent@bootlin.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=maxime.chevallier@bootlin.com \
--cc=netdev@vger.kernel.org \
--cc=o.rempel@pengutronix.de \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pabeni@redhat.com \
--cc=thomas.petazzoni@bootlin.com \
--cc=vladimir.oltean@nxp.com \
/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).