Staging: wlags49_h2: print MAC via printk format specifier
Print MAC/dev_addr via printk extended format specifier %pM instead of custom code. Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
This commit is contained in:
parent
3274ce71fe
commit
5d74f17570
|
@ -229,7 +229,6 @@ static int wl_adapter_resume(struct pcmcia_device *link)
|
|||
void wl_adapter_insert(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev;
|
||||
int i;
|
||||
int ret;
|
||||
/*--------------------------------------------------------------------*/
|
||||
|
||||
|
@ -266,10 +265,8 @@ void wl_adapter_insert(struct pcmcia_device *link)
|
|||
|
||||
register_wlags_sysfs(dev);
|
||||
|
||||
printk(KERN_INFO "%s: Wireless, io_addr %#03lx, irq %d, ""mac_address ",
|
||||
dev->name, dev->base_addr, dev->irq);
|
||||
for (i = 0; i < ETH_ALEN; i++)
|
||||
printk("%02X%c", dev->dev_addr[i], ((i < (ETH_ALEN-1)) ? ':' : '\n'));
|
||||
printk(KERN_INFO "%s: Wireless, io_addr %#03lx, irq %d, mac_address"
|
||||
" %pM\n", dev->name, dev->base_addr, dev->irq, dev->dev_addr);
|
||||
|
||||
DBG_LEAVE(DbgInfo);
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue