Commit b9f63ae7 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by David S. Miller

net: bgmac: fix reversed check for MII registration error

It was failing on successful registration returning meaningless errors.
Signed-off-by: default avatarRafał Miłecki <rafal@milecki.pl>
Fixes: 55954f3b ("net: ethernet: bgmac: move BCMA MDIO Phy code into a separate file")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bb1fceca
...@@ -159,7 +159,7 @@ static int bgmac_probe(struct bcma_device *core) ...@@ -159,7 +159,7 @@ static int bgmac_probe(struct bcma_device *core)
if (!bgmac_is_bcm4707_family(core)) { if (!bgmac_is_bcm4707_family(core)) {
mii_bus = bcma_mdio_mii_register(core, bgmac->phyaddr); mii_bus = bcma_mdio_mii_register(core, bgmac->phyaddr);
if (!IS_ERR(mii_bus)) { if (IS_ERR(mii_bus)) {
err = PTR_ERR(mii_bus); err = PTR_ERR(mii_bus);
goto err; goto err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment