aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sunvnet.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2007-12-20 07:06:25 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:59:13 -0500
commit137919a9ba10897b579618f19bfaa0b18c09c398 (patch)
treeb656aad93f00e375035388c5abd3fef0b69c8ff5 /drivers/net/sunvnet.c
parent910ef70aa301eb018255683499b8e51426c213a0 (diff)
[SUNVNET]: Use print_mac
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sunvnet.c')
-rw-r--r--drivers/net/sunvnet.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/net/sunvnet.c b/drivers/net/sunvnet.c
index ff1028a597df..4a0035f7a842 100644
--- a/drivers/net/sunvnet.c
+++ b/drivers/net/sunvnet.c
@@ -1149,6 +1149,7 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev,
1149 struct vnet *vp; 1149 struct vnet *vp;
1150 const u64 *rmac; 1150 const u64 *rmac;
1151 int len, i, err, switch_port; 1151 int len, i, err, switch_port;
1152 DECLARE_MAC_BUF(mac);
1152 1153
1153 print_version(); 1154 print_version();
1154 1155
@@ -1213,12 +1214,9 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev,
1213 1214
1214 dev_set_drvdata(&vdev->dev, port); 1215 dev_set_drvdata(&vdev->dev, port);
1215 1216
1216 printk(KERN_INFO "%s: PORT ( remote-mac ", vp->dev->name); 1217 printk(KERN_INFO "%s: PORT ( remote-mac %s%s )\n",
1217 for (i = 0; i < 6; i++) 1218 vp->dev->name, print_mac(mac, port->raddr),
1218 printk("%2.2x%c", port->raddr[i], i == 5 ? ' ' : ':'); 1219 switch_port ? " switch-port" : "");
1219 if (switch_port)
1220 printk("switch-port ");
1221 printk(")\n");
1222 1220
1223 vio_port_up(&port->vio); 1221 vio_port_up(&port->vio);
1224 1222