net: convert print_mac to %pM
This converts pretty much everything to print_mac. There were a few things that had conflicts which I have just dropped for now, no harm done. I've built an allyesconfig with this and looked at the files that weren't built very carefully, but it's a huge patch. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
0c68ae2605
commit
e174961ca1
@@ -914,7 +914,6 @@ static int __devinit ibmlana_init_one(struct device *kdev)
|
||||
int base = 0, irq = 0, iobase = 0, memlen = 0;
|
||||
ibmlana_priv *priv;
|
||||
ibmlana_medium medium;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
dev = alloc_etherdev(sizeof(ibmlana_priv));
|
||||
if (!dev)
|
||||
@@ -990,10 +989,10 @@ static int __devinit ibmlana_init_one(struct device *kdev)
|
||||
/* print config */
|
||||
|
||||
printk(KERN_INFO "%s: IRQ %d, I/O %#lx, memory %#lx-%#lx, "
|
||||
"MAC address %s.\n",
|
||||
"MAC address %pM.\n",
|
||||
dev->name, priv->realirq, dev->base_addr,
|
||||
dev->mem_start, dev->mem_end - 1,
|
||||
print_mac(mac, dev->dev_addr));
|
||||
dev->dev_addr);
|
||||
printk(KERN_INFO "%s: %s medium\n", dev->name, MediaNames[priv->medium]);
|
||||
|
||||
/* reset board */
|
||||
|
Reference in New Issue
Block a user