Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ static int bgmac_probe(struct bcma_device *core)

	if (!bgmac_is_bcm4707_family(core)) {
		mii_bus = bcma_mdio_mii_register(core, bgmac->phyaddr);
		if (!IS_ERR(mii_bus)) {
		if (IS_ERR(mii_bus)) {
			err = PTR_ERR(mii_bus);
			goto err;
		}