Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[SUNVNET]: Use print_mac

parent 910ef70a
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -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);