net: phy: smsc: skip ENERGYON interrupt if disabled
Don't enable the interrupt if the platform disable the energy detection by "smsc,disable-energy-detect". Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
74c654a852
commit
7365494550
1 changed files with 11 additions and 4 deletions
|
@ -48,10 +48,17 @@ struct smsc_phy_priv {
|
||||||
|
|
||||||
static int smsc_phy_config_intr(struct phy_device *phydev)
|
static int smsc_phy_config_intr(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
int rc = phy_write (phydev, MII_LAN83C185_IM,
|
struct smsc_phy_priv *priv = phydev->priv;
|
||||||
((PHY_INTERRUPT_ENABLED == phydev->interrupts)
|
u16 intmask = 0;
|
||||||
? MII_LAN83C185_ISF_INT_PHYLIB_EVENTS
|
int rc;
|
||||||
: 0));
|
|
||||||
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
|
||||||
|
intmask = MII_LAN83C185_ISF_INT4 | MII_LAN83C185_ISF_INT6;
|
||||||
|
if (priv->energy_enable)
|
||||||
|
intmask |= MII_LAN83C185_ISF_INT7;
|
||||||
|
}
|
||||||
|
|
||||||
|
rc = phy_write(phydev, MII_LAN83C185_IM, intmask);
|
||||||
|
|
||||||
return rc < 0 ? rc : 0;
|
return rc < 0 ? rc : 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue