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

Commit eaf47b17 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller
Browse files

net: phy: consider PHY_IGNORE_INTERRUPT in state machine PHY_NOLINK handling



We can bail out immediately also in case of PHY_IGNORE_INTERRUPT because
phy_mac_interupt() informs us once the link is up.

Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4cb160d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -894,7 +894,7 @@ void phy_state_machine(struct work_struct *work)
			needs_aneg = true;
		break;
	case PHY_NOLINK:
		if (phy_interrupt_is_valid(phydev))
		if (phydev->irq != PHY_POLL)
			break;

		err = phy_read_status(phydev);