diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2013-12-18 06:38:05 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-18 06:49:01 +0100 |
commit | 5a48b72de87d8f26e36aca9159bf596bc09791c1 (patch) | |
tree | f2e282f58ed4a998a49ef8723373f3d53382fe19 /drivers/net/phy/cicada.c | |
parent | Merge branch 'vlan_tpid' (diff) | |
download | linux-5a48b72de87d8f26e36aca9159bf596bc09791c1.tar.xz linux-5a48b72de87d8f26e36aca9159bf596bc09791c1.zip |
net: phy: cicada: 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/cicada.c')
-rw-r--r-- | drivers/net/phy/cicada.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/cicada.c b/drivers/net/phy/cicada.c index 313a0377f68f..b57ce0cc9657 100644 --- a/drivers/net/phy/cicada.c +++ b/drivers/net/phy/cicada.c @@ -92,8 +92,8 @@ static int cis820x_config_intr(struct phy_device *phydev) { int err; - if(phydev->interrupts == PHY_INTERRUPT_ENABLED) - err = phy_write(phydev, MII_CIS8201_IMASK, + if (phydev->interrupts == PHY_INTERRUPT_ENABLED) + err = phy_write(phydev, MII_CIS8201_IMASK, MII_CIS8201_IMASK_MASK); else err = phy_write(phydev, MII_CIS8201_IMASK, 0); |