aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/rdc/r6040.c
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2016-07-04 14:36:01 -0700
committerDavid S. Miller <davem@davemloft.net>2016-07-05 00:10:28 -0700
commit3eb415d1afd0ec22d2cba33877da036f83098105 (patch)
tree2723b38a55dfb5c8abb95bcc2298d3e0b0a8d9d2 /drivers/net/ethernet/rdc/r6040.c
parentdwc_eth_qos: remove unused including <linux/version.h> (diff)
downloadlinux-dev-3eb415d1afd0ec22d2cba33877da036f83098105.tar.xz
linux-dev-3eb415d1afd0ec22d2cba33877da036f83098105.zip
net: r6040: Utilize phy_print_status
Instead of open coding our own version utilize the library provided function. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/rdc/r6040.c')
-rw-r--r--drivers/net/ethernet/rdc/r6040.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/net/ethernet/rdc/r6040.c b/drivers/net/ethernet/rdc/r6040.c
index 7a7a395d0512..12fc7cd67fa7 100644
--- a/drivers/net/ethernet/rdc/r6040.c
+++ b/drivers/net/ethernet/rdc/r6040.c
@@ -1001,14 +1001,8 @@ static void r6040_adjust_link(struct net_device *dev)
lp->old_duplex = phydev->duplex;
}
- if (status_changed) {
- pr_info("%s: link %s", dev->name, phydev->link ?
- "UP" : "DOWN");
- if (phydev->link)
- pr_cont(" - %d/%s", phydev->speed,
- DUPLEX_FULL == phydev->duplex ? "full" : "half");
- pr_cont("\n");
- }
+ if (status_changed)
+ phy_print_status(phydev);
}
static int r6040_mii_probe(struct net_device *dev)