[SUNVNET]: Use print_mac
authorJoe Perches <joe@perches.com>
Thu, 20 Dec 2007 12:06:25 +0000 (04:06 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 22:59:13 +0000 (14:59 -0800)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/sunvnet.c

index ff1028a597df1b34860d53cffcf33c02e8d7c845..4a0035f7a842471df9e39e0dfd8bef3d896b24cc 100644 (file)
@@ -1149,6 +1149,7 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev,
        struct vnet *vp;
        const u64 *rmac;
        int len, i, err, switch_port;
+       DECLARE_MAC_BUF(mac);
 
        print_version();
 
@@ -1213,12 +1214,9 @@ static int __devinit vnet_port_probe(struct vio_dev *vdev,
 
        dev_set_drvdata(&vdev->dev, port);
 
-       printk(KERN_INFO "%s: PORT ( remote-mac ", vp->dev->name);
-       for (i = 0; i < 6; i++)
-               printk("%2.2x%c", port->raddr[i], i == 5 ? ' ' : ':');
-       if (switch_port)
-               printk("switch-port ");
-       printk(")\n");
+       printk(KERN_INFO "%s: PORT ( remote-mac %s%s )\n",
+              vp->dev->name, print_mac(mac, port->raddr),
+              switch_port ? " switch-port" : "");
 
        vio_port_up(&port->vio);