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

Commit 451e1ca2 authored by Petri Gynther's avatar Petri Gynther Committed by David S. Miller
Browse files

net: bcmgenet: fix the call to phy_mac_interrupt()



On phy_mac_interrupt() call, the new_link parameter should be 0 or 1.

Signed-off-by: default avatarPetri Gynther <pgynther@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e122966d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2273,7 +2273,7 @@ static void bcmgenet_irq_task(struct work_struct *work)
	if ((priv->hw_params->flags & GENET_HAS_MDIO_INTR) &&
	    (priv->irq0_stat & UMAC_IRQ_LINK_EVENT)) {
		phy_mac_interrupt(priv->phydev,
				  priv->irq0_stat & UMAC_IRQ_LINK_UP);
				  !!(priv->irq0_stat & UMAC_IRQ_LINK_UP));
		priv->irq0_stat &= ~UMAC_IRQ_LINK_EVENT;
	}
}