diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2020-09-22 23:03:56 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-09-24 03:51:16 +0300 |
commit | 0fa45ee3c1cb73be9d3e212d3f78557c95277fdd (patch) | |
tree | f86e91e22bcebfedf5755fcc8f217c8581603f08 /drivers/net/dsa/bcm_sf2.c | |
parent | 8c28044097f28e27428922f957b08393f35c3e93 (diff) | |
download | linux-0fa45ee3c1cb73be9d3e212d3f78557c95277fdd.tar.xz |
net: dsa: bcm_sf2: Include address 0 for MDIO diversion
We need to include MDIO address 0, which is how our Device Tree blobs
indicate where to find the external BCM53125 switches.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/bcm_sf2.c')
-rw-r--r-- | drivers/net/dsa/bcm_sf2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c index 2bd52b03de38..0b5b2b33b3b6 100644 --- a/drivers/net/dsa/bcm_sf2.c +++ b/drivers/net/dsa/bcm_sf2.c @@ -538,7 +538,7 @@ static int bcm_sf2_mdio_register(struct dsa_switch *ds) * driver. */ if (of_machine_is_compatible("brcm,bcm7445d0")) - priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR); + priv->indir_phy_mask |= (1 << BRCM_PSEUDO_PHY_ADDR) | (1 << 0); else priv->indir_phy_mask = 0; |