Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
net: phy: cicada: fix checkpath errors
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
ffainelli authored and davem330 committed Dec 18, 2013
1 parent a58f7f8 commit 5a48b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/phy/cicada.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5a48b72

Please sign in to comment.