Skip to content

Commit

Permalink
smsc911x: Fix build error when SMSC_TRACE() used
Browse files Browse the repository at this point in the history
This patch fixes build error when SMSC_TRACE() used.

Signed-off-by: Jeongtae Park <jtp.park@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jeongtae Park authored and David S. Miller committed Mar 15, 2011
1 parent 48f26d5 commit 84c0c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/smsc911x.c
Original file line number Diff line number Diff line change
Expand Up @@ -791,8 +791,8 @@ static int smsc911x_mii_probe(struct net_device *dev)
return -ENODEV;
}

SMSC_TRACE(PROBE, "PHY %d: addr %d, phy_id 0x%08X",
phy_addr, phydev->addr, phydev->phy_id);
SMSC_TRACE(PROBE, "PHY: addr %d, phy_id 0x%08X",
phydev->addr, phydev->phy_id);

ret = phy_connect_direct(dev, phydev,
&smsc911x_phy_adjust_link, 0,
Expand Down

0 comments on commit 84c0c69

Please sign in to comment.