diff options
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r-- | drivers/net/phy/phy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 7670aac0e93f..a8445c72fc13 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c | |||
@@ -47,11 +47,11 @@ void phy_print_status(struct phy_device *phydev) | |||
47 | pr_info("PHY: %s - Link is %s", dev_name(&phydev->dev), | 47 | pr_info("PHY: %s - Link is %s", dev_name(&phydev->dev), |
48 | phydev->link ? "Up" : "Down"); | 48 | phydev->link ? "Up" : "Down"); |
49 | if (phydev->link) | 49 | if (phydev->link) |
50 | printk(" - %d/%s", phydev->speed, | 50 | printk(KERN_CONT " - %d/%s", phydev->speed, |
51 | DUPLEX_FULL == phydev->duplex ? | 51 | DUPLEX_FULL == phydev->duplex ? |
52 | "Full" : "Half"); | 52 | "Full" : "Half"); |
53 | 53 | ||
54 | printk("\n"); | 54 | printk(KERN_CONT "\n"); |
55 | } | 55 | } |
56 | EXPORT_SYMBOL(phy_print_status); | 56 | EXPORT_SYMBOL(phy_print_status); |
57 | 57 | ||