aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sunvnet.c
diff options
context:
space:
mode:
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