[NET]: Introduce and use print_mac() and DECLARE_MAC_BUF()
This is nicer than the MAC_FMT stuff. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
95ea36275f
commit
0795af5729
@@ -151,6 +151,7 @@ static int __devinit zorro8390_init(struct net_device *dev,
|
||||
0x00, 0x02, 0x04, 0x06, 0x08, 0x0a, 0x0c, 0x0e,
|
||||
0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x1e,
|
||||
};
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
/* Reset card. Who knows what dain-bramaged state it was left in. */
|
||||
{
|
||||
@@ -211,12 +212,12 @@ static int __devinit zorro8390_init(struct net_device *dev,
|
||||
i = request_irq(IRQ_AMIGA_PORTS, __ei_interrupt, IRQF_SHARED, DRV_NAME, dev);
|
||||
if (i) return i;
|
||||
|
||||
for(i = 0; i < ETHER_ADDR_LEN; i++) {
|
||||
#ifdef DEBUG
|
||||
printk(" %2.2x", SA_prom[i]);
|
||||
#endif
|
||||
for(i = 0; i < ETHER_ADDR_LEN; i++)
|
||||
dev->dev_addr[i] = SA_prom[i];
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
printk("%s", print_mac(mac, dev->dev_addr));
|
||||
#endif
|
||||
|
||||
ei_status.name = name;
|
||||
ei_status.tx_start_page = start_page;
|
||||
@@ -243,10 +244,8 @@ static int __devinit zorro8390_init(struct net_device *dev,
|
||||
return err;
|
||||
}
|
||||
|
||||
printk(KERN_INFO "%s: %s at 0x%08lx, Ethernet Address "
|
||||
"%02x:%02x:%02x:%02x:%02x:%02x\n", dev->name, name, board,
|
||||
dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
|
||||
dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
|
||||
printk(KERN_INFO "%s: %s at 0x%08lx, Ethernet Address %s\n",
|
||||
dev->name, name, board, print_mac(mac, dev->dev_addr));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user