Commit 72903831 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

drivers/net: Convert #ifdef DEBUG printk(KERN_DEBUG to pr_debug(

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6bc5046e
...@@ -688,14 +688,11 @@ static void tc_handle_link_change(struct net_device *dev) ...@@ -688,14 +688,11 @@ static void tc_handle_link_change(struct net_device *dev)
if (status_change && netif_msg_link(lp)) { if (status_change && netif_msg_link(lp)) {
phy_print_status(phydev); phy_print_status(phydev);
#ifdef DEBUG pr_debug("%s: MII BMCR %04x BMSR %04x LPA %04x\n",
printk(KERN_DEBUG dev->name,
"%s: MII BMCR %04x BMSR %04x LPA %04x\n", phy_read(phydev, MII_BMCR),
dev->name, phy_read(phydev, MII_BMSR),
phy_read(phydev, MII_BMCR), phy_read(phydev, MII_LPA));
phy_read(phydev, MII_BMSR),
phy_read(phydev, MII_LPA));
#endif
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment