drivers: net: bcm-sf2: pass -1 to phy_connect()
authorAlex Marginean <alexandru.marginean@nxp.com>
Thu, 19 Dec 2019 12:35:37 +0000 (14:35 +0200)
committerJoe Hershberger <joe.hershberger@ni.com>
Fri, 20 Dec 2019 16:02:23 +0000 (10:02 -0600)
Passing 0 to PHY connect used to trigger a MDIO scan due to a bug fixed in
the meantime.  It's unclear if bcm-sf2 wants to connect to PHY @ addr 0 or
is scanning the bus, passing -1 here should keep it functional either way.

Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com>
Cc: Jiandong Zheng <jdzheng@broadcom.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
drivers/net/bcm-sf2-eth.c

index 615037f1a3f3092157f165f1983ef37e3c5a696d..11f937032f3c434c32033e4eca36e630a94816fb 100644 (file)
@@ -50,7 +50,7 @@ static int bcm_sf2_eth_init(struct eth_device *dev)
        eth->port_num = 0;
        debug("Connecting PHY 0...\n");
        phydev = phy_connect(miiphy_get_dev_by_name(dev->name),
-                            0, dev, eth->phy_interface);
+                            -1, dev, eth->phy_interface);
        if (phydev != NULL) {
                eth->port[0] = phydev;
                eth->port_num += 1;