From: kernel test robot <lkp@intel.com>
To: "Alvin Šipraga" <alvin@pqrs.dk>,
"Linus Walleij" <linus.walleij@linaro.org>,
"Andrew Lunn" <andrew@lunn.ch>,
"Vivien Didelot" <vivien.didelot@gmail.com>,
"Florian Fainelli" <f.fainelli@gmail.com>,
"Vladimir Oltean" <olteanv@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
"Jakub Kicinski" <kuba@kernel.org>,
"Rob Herring" <robh+dt@kernel.org>,
"Heiner Kallweit" <hkallweit1@gmail.com>
Cc: kbuild-all@lists.01.org, netdev@vger.kernel.org
Subject: Re: [PATCH net-next 5/6] net: dsa: realtek-smi: add rtl8365mb subdriver for RTL8365MB-VC
Date: Wed, 13 Oct 2021 04:58:25 +0800 [thread overview]
Message-ID: <202110130453.UtERxi93-lkp@intel.com> (raw)
In-Reply-To: <20211012123557.3547280-6-alvin@pqrs.dk>
[-- Attachment #1: Type: text/plain, Size: 3558 bytes --]
Hi "Alvin,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on net-next/master]
url: https://github.com/0day-ci/linux/commits/Alvin-ipraga/net-dsa-add-support-for-RTL8365MB-VC/20211012-204007
base: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 177c92353be935db555d0d08729e871145ec698c
config: i386-randconfig-a001-20211012 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
# https://github.com/0day-ci/linux/commit/1f05b453a6d1b64bb7cefff2daa90d9b1e7bce77
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Alvin-ipraga/net-dsa-add-support-for-RTL8365MB-VC/20211012-204007
git checkout 1f05b453a6d1b64bb7cefff2daa90d9b1e7bce77
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
drivers/net/dsa/rtl8365mb.c: In function 'rtl8365mb_setup':
>> drivers/net/dsa/rtl8365mb.c:1428:20: warning: variable 'mb' set but not used [-Wunused-but-set-variable]
1428 | struct rtl8365mb *mb;
| ^~
vim +/mb +1428 drivers/net/dsa/rtl8365mb.c
1424
1425 static int rtl8365mb_setup(struct dsa_switch *ds)
1426 {
1427 struct realtek_smi *smi = ds->priv;
> 1428 struct rtl8365mb *mb;
1429 int ret;
1430 int i;
1431
1432 mb = smi->chip_data;
1433
1434 ret = rtl8365mb_reset_chip(smi);
1435 if (ret) {
1436 dev_err(smi->dev, "failed to reset chip: %d\n", ret);
1437 return ret;
1438 }
1439
1440 /* Configure switch to vendor-defined initial state */
1441 ret = rtl8365mb_switch_init(smi);
1442 if (ret) {
1443 dev_err(smi->dev, "failed to initialize switch: %d\n", ret);
1444 return ret;
1445 }
1446
1447 /* Configure CPU tagging */
1448 ret = rtl8365mb_cpu_config(smi);
1449 if (ret)
1450 return ret;
1451
1452 /* Configure ports in standalone mode */
1453 for (i = 0; i < smi->num_ports; i++) {
1454 /* Forward only to the CPU */
1455 ret = rtl8365mb_port_set_isolation(smi, i, BIT(smi->cpu_port));
1456 if (ret)
1457 return ret;
1458
1459 /* Disable learning */
1460 ret = rtl8365mb_port_set_learning(smi, i, false);
1461 if (ret)
1462 return ret;
1463
1464 /* Set the initial STP state of all ports to DISABLED, otherwise
1465 * ports will still forward frames to the CPU despite being
1466 * administratively down by default.
1467 */
1468 rtl8365mb_port_stp_state_set(smi->ds, i, BR_STATE_DISABLED);
1469 }
1470
1471 /* Set maximum packet length to 1536 bytes */
1472 ret = regmap_update_bits(smi->map, RTL8365MB_CFG0_MAX_LEN_REG,
1473 RTL8365MB_CFG0_MAX_LEN_MASK,
1474 FIELD_PREP(RTL8365MB_CFG0_MAX_LEN_MASK, 1536));
1475 if (ret)
1476 return ret;
1477
1478 /* Set up cascading IRQs */
1479 ret = rtl8365mb_irq_setup(smi);
1480 if (ret == -EPROBE_DEFER)
1481 return ret;
1482 else if (ret)
1483 dev_info(smi->dev, "no interrupt support\n");
1484
1485 ret = realtek_smi_setup_mdio(smi);
1486 if (ret) {
1487 dev_err(smi->dev, "could not set up MDIO bus\n");
1488 return -ENODEV;
1489 }
1490
1491 return ret;
1492 }
1493
---
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: 37193 bytes --]
next prev parent reply other threads:[~2021-10-12 20:59 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-12 12:35 [PATCH net-next 0/6] net: dsa: add support for RTL8365MB-VC Alvin Šipraga
2021-10-12 12:35 ` [PATCH net-next 1/6] ether: add EtherType for proprietary Realtek protocols Alvin Šipraga
2021-10-12 13:09 ` Vladimir Oltean
2021-10-12 12:35 ` [PATCH net-next 2/6] net: dsa: move NET_DSA_TAG_RTL4_A to right place in Kconfig/Makefile Alvin Šipraga
2021-10-12 12:42 ` Vladimir Oltean
2021-10-13 10:50 ` Linus Walleij
2021-10-12 12:35 ` [PATCH net-next 3/6] dt-bindings: net: dsa: realtek-smi: document new compatible rtl8365mb Alvin Šipraga
2021-10-12 12:35 ` [PATCH net-next 4/6] net: dsa: tag_rtl8_4: add realtek 8 byte protocol 4 tag Alvin Šipraga
2021-10-12 12:50 ` Vladimir Oltean
2021-10-12 12:56 ` Alvin Šipraga
2021-10-13 9:45 ` DENG Qingfang
2021-10-13 9:52 ` Alvin Šipraga
2021-10-13 11:02 ` Linus Walleij
2021-10-12 12:35 ` [PATCH net-next 5/6] net: dsa: realtek-smi: add rtl8365mb subdriver for RTL8365MB-VC Alvin Šipraga
2021-10-12 13:04 ` Vladimir Oltean
2021-10-12 13:22 ` Alvin Šipraga
2021-10-12 13:50 ` Alvin Šipraga
2021-10-12 14:03 ` Vladimir Oltean
2021-10-12 14:30 ` Alvin Šipraga
2021-10-12 15:27 ` Jakub Kicinski
2021-10-13 8:33 ` Alvin Šipraga
2021-10-13 15:13 ` Jakub Kicinski
2021-10-14 12:44 ` Alvin Šipraga
2021-10-14 14:08 ` Jakub Kicinski
2021-10-12 20:58 ` kernel test robot [this message]
2021-10-13 9:55 ` DENG Qingfang
2021-10-13 10:05 ` Alvin Šipraga
2021-10-13 10:10 ` Vladimir Oltean
2021-10-13 10:13 ` DENG Qingfang
2021-10-13 15:12 ` Linus Walleij
2021-10-14 12:11 ` Alvin Šipraga
2021-10-12 12:35 ` [PATCH net-next 6/6] net: phy: realtek: add support for RTL8365MB-VC internal PHYs Alvin Šipraga
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=202110130453.UtERxi93-lkp@intel.com \
--to=lkp@intel.com \
--cc=alvin@pqrs.dk \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=f.fainelli@gmail.com \
--cc=hkallweit1@gmail.com \
--cc=kbuild-all@lists.01.org \
--cc=kuba@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=robh+dt@kernel.org \
--cc=vivien.didelot@gmail.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).