Skip to content

Commit

Permalink
[SUNVNET]: Use print_mac
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joe Perches authored and David S. Miller committed Jan 28, 2008
1 parent 910ef70 commit 137919a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions drivers/net/sunvnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 137919a

Please sign in to comment.