diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2013-12-17 21:38:06 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-18 00:49:01 -0500 |
commit | a60e7e1e657b9458c3f44681fe81f03a85acfc20 (patch) | |
tree | 22d529e507fb70f4123e78044023785602019856 /drivers/net/phy | |
parent | 5a48b72de87d8f26e36aca9159bf596bc09791c1 (diff) | |
download | talos-op-linux-a60e7e1e657b9458c3f44681fe81f03a85acfc20.tar.gz talos-op-linux-a60e7e1e657b9458c3f44681fe81f03a85acfc20.zip |
net: phy: davicom: fix checkpath errors
checkpath spotted a few stylistic errors, fix them.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/davicom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/davicom.c b/drivers/net/phy/davicom.c index 383e8338ad86..d2c08f625a41 100644 --- a/drivers/net/phy/davicom.c +++ b/drivers/net/phy/davicom.c @@ -72,7 +72,7 @@ static int dm9161_config_intr(struct phy_device *phydev) if (temp < 0) return temp; - if(PHY_INTERRUPT_ENABLED == phydev->interrupts ) + if (PHY_INTERRUPT_ENABLED == phydev->interrupts) temp &= ~(MII_DM9161_INTR_STOP); else temp |= MII_DM9161_INTR_STOP; |