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

[NIU]: Use print_mac

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d6645372
...@@ -7588,12 +7588,10 @@ static void __devinit niu_assign_netdev_ops(struct net_device *dev) ...@@ -7588,12 +7588,10 @@ static void __devinit niu_assign_netdev_ops(struct net_device *dev)
static void __devinit niu_device_announce(struct niu *np) static void __devinit niu_device_announce(struct niu *np)
{ {
struct net_device *dev = np->dev; struct net_device *dev = np->dev;
int i; DECLARE_MAC_BUF(mac);
pr_info("%s: NIU Ethernet ", dev->name); pr_info("%s: NIU Ethernet %s\n",
for (i = 0; i < 6; i++) dev->name, print_mac(mac, dev->dev_addr));
printk("%2.2x%c", dev->dev_addr[i],
i == 5 ? '\n' : ':');
pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n", pr_info("%s: Port type[%s] mode[%s:%s] XCVR[%s] phy[%s]\n",
dev->name, dev->name,
......
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