From: kernel test robot <lkp@intel.com>
To: Daniel Golle <daniel@makrotopia.org>,
Andrew Lunn <andrew@lunn.ch>, Vladimir Oltean <olteanv@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Heiner Kallweit <hkallweit1@gmail.com>,
Russell King <linux@armlinux.org.uk>,
Simon Horman <horms@kernel.org>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org,
Frank Wunderlich <frankwu@gmx.de>, Chad Monroe <chad@monroe.io>,
Cezary Wilmanski <cezary.wilmanski@adtran.com>,
Avinash Jayaraman <ajayaraman@maxlinear.com>,
Bing tao Xu <bxu@maxlinear.com>, Liang Xu <lxu@maxlinear.com>,
Juraj Povazanec <jpovazanec@maxlinear.com>,
"Fanni (Fang-Yi) Chan" <fchan@maxlinear.com>,
"Benny (Ying-Tsan) Weng" <yweng@maxlinear.com>,
"Livia M. Rosu" <lrosu@maxlinear.com>,
John Crispin <john@phrozen.org>
Subject: Re: [PATCH net-next v10 4/4] net: dsa: add basic initial driver for MxL862xx switches
Date: Fri, 30 Jan 2026 15:40:42 +0800 [thread overview]
Message-ID: <202601301504.2pd3tNrg-lkp@intel.com> (raw)
In-Reply-To: <281fd7e777b51849fac9ef5191679586cc2a1b54.1769731630.git.daniel@makrotopia.org>
Hi Daniel,
kernel test robot noticed the following build errors:
[auto build test ERROR on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Daniel-Golle/dt-bindings-net-dsa-add-MaxLinear-MxL862xx/20260130-085313
base: net-next/main
patch link: https://lore.kernel.org/r/281fd7e777b51849fac9ef5191679586cc2a1b54.1769731630.git.daniel%40makrotopia.org
patch subject: [PATCH net-next v10 4/4] net: dsa: add basic initial driver for MxL862xx switches
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20260130/202601301504.2pd3tNrg-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260130/202601301504.2pd3tNrg-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/202601301504.2pd3tNrg-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/net/dsa/mxl862xx/mxl862xx.c: In function 'mxl862xx_port_setup':
>> drivers/net/dsa/mxl862xx/mxl862xx.c:331:32: error: passing argument 1 of 'dsa_port_is_unused' from incompatible pointer type [-Wincompatible-pointer-types]
331 | if (dsa_port_is_unused(ds, port) ||
| ^~
| |
| struct dsa_switch *
In file included from drivers/net/dsa/mxl862xx/mxl862xx.c:16:
include/net/dsa.h:546:56: note: expected 'struct dsa_port *' but argument is of type 'struct dsa_switch *'
546 | static inline bool dsa_port_is_unused(struct dsa_port *dp)
| ~~~~~~~~~~~~~~~~~^~
>> drivers/net/dsa/mxl862xx/mxl862xx.c:331:13: error: too many arguments to function 'dsa_port_is_unused'; expected 1, have 2
331 | if (dsa_port_is_unused(ds, port) ||
| ^~~~~~~~~~~~~~~~~~ ~~~~
include/net/dsa.h:546:20: note: declared here
546 | static inline bool dsa_port_is_unused(struct dsa_port *dp)
| ^~~~~~~~~~~~~~~~~~
>> drivers/net/dsa/mxl862xx/mxl862xx.c:332:29: error: passing argument 1 of 'dsa_port_is_dsa' from incompatible pointer type [-Wincompatible-pointer-types]
332 | dsa_port_is_dsa(ds, port))
| ^~
| |
| struct dsa_switch *
include/net/dsa.h:531:53: note: expected 'struct dsa_port *' but argument is of type 'struct dsa_switch *'
531 | static inline bool dsa_port_is_dsa(struct dsa_port *port)
| ~~~~~~~~~~~~~~~~~^~~~
>> drivers/net/dsa/mxl862xx/mxl862xx.c:332:13: error: too many arguments to function 'dsa_port_is_dsa'; expected 1, have 2
332 | dsa_port_is_dsa(ds, port))
| ^~~~~~~~~~~~~~~ ~~~~
include/net/dsa.h:531:20: note: declared here
531 | static inline bool dsa_port_is_dsa(struct dsa_port *port)
| ^~~~~~~~~~~~~~~
vim +/dsa_port_is_unused +331 drivers/net/dsa/mxl862xx/mxl862xx.c
317
318 static int mxl862xx_port_setup(struct dsa_switch *ds, int port)
319 {
320 bool is_cpu_port = dsa_is_cpu_port(ds, port);
321 int ret;
322
323 /* disable port and flush MAC entries */
324 ret = mxl862xx_port_state(ds, port, false);
325 if (ret)
326 return ret;
327
328 mxl862xx_port_fast_age(ds, port);
329
330 /* skip setup for unused and DSA ports */
> 331 if (dsa_port_is_unused(ds, port) ||
> 332 dsa_port_is_dsa(ds, port))
333 return 0;
334
335 /* configure tag protocol */
336 ret = mxl862xx_configure_sp_tag_proto(ds, port, is_cpu_port);
337 if (ret)
338 return ret;
339
340 /* assign CTP port IDs */
341 ret = mxl862xx_configure_ctp_port(ds, port, port,
342 is_cpu_port ? 32 - port : 1);
343 if (ret)
344 return ret;
345
346 if (is_cpu_port)
347 /* assign user ports to CPU port bridge */
348 return mxl862xx_setup_cpu_bridge(ds, port);
349
350 /* setup single-port bridge for user ports */
351 return mxl862xx_add_single_port_bridge(ds, port);
352 }
353
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2026-01-30 7:41 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-30 0:37 [PATCH net-next v10 0/4] net: dsa: initial support for MaxLinear MxL862xx switches Daniel Golle
2026-01-30 0:37 ` [PATCH net-next v10 1/4] dt-bindings: net: dsa: add MaxLinear MxL862xx Daniel Golle
2026-01-30 0:38 ` [PATCH net-next v10 2/4] net: dsa: add tag format for MxL862xx switches Daniel Golle
2026-01-30 0:38 ` [PATCH net-next v10 3/4] net: mdio: add unlocked mdiodev C45 bus accessors Daniel Golle
2026-01-30 0:38 ` [PATCH net-next v10 4/4] net: dsa: add basic initial driver for MxL862xx switches Daniel Golle
2026-01-30 7:40 ` kernel test robot
2026-01-30 7:40 ` 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=202601301504.2pd3tNrg-lkp@intel.com \
--to=lkp@intel.com \
--cc=ajayaraman@maxlinear.com \
--cc=andrew@lunn.ch \
--cc=bxu@maxlinear.com \
--cc=cezary.wilmanski@adtran.com \
--cc=chad@monroe.io \
--cc=conor+dt@kernel.org \
--cc=daniel@makrotopia.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=fchan@maxlinear.com \
--cc=frankwu@gmx.de \
--cc=hkallweit1@gmail.com \
--cc=horms@kernel.org \
--cc=john@phrozen.org \
--cc=jpovazanec@maxlinear.com \
--cc=krzk@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=lrosu@maxlinear.com \
--cc=lxu@maxlinear.com \
--cc=netdev@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=olteanv@gmail.com \
--cc=pabeni@redhat.com \
--cc=robh@kernel.org \
--cc=yweng@maxlinear.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 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.