mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 11:00:53 +07:00
xscale/ixp2000/ixpdev: 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> Acked-by: Lennert Buytenhek <kernel@wantstofly.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d558950efc
commit
2d5ba83551
@ -398,11 +398,8 @@ int ixpdev_init(int __nds_count, struct net_device **__nds,
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < nds_count; i++) {
|
for (i = 0; i < nds_count; i++) {
|
||||||
printk(KERN_INFO "%s: IXP2000 MSF ethernet (port %d), "
|
printk(KERN_INFO "%s: IXP2000 MSF ethernet (port %d), %pM.\n",
|
||||||
"%.2x:%.2x:%.2x:%.2x:%.2x:%.2x.\n", nds[i]->name, i,
|
nds[i]->name, i, nds[i]->dev_addr);
|
||||||
nds[i]->dev_addr[0], nds[i]->dev_addr[1],
|
|
||||||
nds[i]->dev_addr[2], nds[i]->dev_addr[3],
|
|
||||||
nds[i]->dev_addr[4], nds[i]->dev_addr[5]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user