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

[SUNVNET]: Use print_mac

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 910ef70a
...@@ -1149,6 +1149,7 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev, ...@@ -1149,6 +1149,7 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev,
struct vnet *vp; struct vnet *vp;
const u64 *rmac; const u64 *rmac;
int len, i, err, switch_port; int len, i, err, switch_port;
DECLARE_MAC_BUF(mac);
print_version(); print_version();
...@@ -1213,12 +1214,9 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev, ...@@ -1213,12 +1214,9 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev,
dev_set_drvdata(&vdev->dev, port); dev_set_drvdata(&vdev->dev, port);
printk(KERN_INFO "%s: PORT ( remote-mac ", vp->dev->name); printk(KERN_INFO "%s: PORT ( remote-mac %s%s )\n",
for (i = 0; i < 6; i++) vp->dev->name, print_mac(mac, port->raddr),
printk("%2.2x%c", port->raddr[i], i == 5 ? ' ' : ':'); switch_port ? " switch-port" : "");
if (switch_port)
printk("switch-port ");
printk(")\n");
vio_port_up(&port->vio); vio_port_up(&port->vio);
......
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