mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 00:21:32 +00:00
net: phy: check for implementation of both callbacks in phy_drv_supports_irq
Now that the icplus driver has been fixed all PHY drivers supporting interrupts have both callbacks (config_intr and ack_interrupt) implemented - as it should be. Therefore phy_drv_supports_irq() can be changed now to check for both callbacks being implemented. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6551971ea8
commit
a21ff3c83b
@ -2122,7 +2122,7 @@ static void of_set_phy_eee_broken(struct phy_device *phydev)
|
||||
|
||||
static bool phy_drv_supports_irq(struct phy_driver *phydrv)
|
||||
{
|
||||
return phydrv->config_intr || phydrv->ack_interrupt;
|
||||
return phydrv->config_intr && phydrv->ack_interrupt;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user