[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
@ -4877,6 +4877,7 @@ static int __devinit cas_init_one(struct pci_dev *pdev,
|
||||
int i, err, pci_using_dac;
|
||||
u16 pci_cmd;
|
||||
u8 orig_cacheline_size = 0, cas_cacheline_size = 0;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
if (cas_version_printed++ == 0)
|
||||
printk(KERN_INFO "%s", version);
|
||||
@ -5084,16 +5085,12 @@ static int __devinit cas_init_one(struct pci_dev *pdev,
|
||||
|
||||
i = readl(cp->regs + REG_BIM_CFG);
|
||||
printk(KERN_INFO "%s: Sun Cassini%s (%sbit/%sMHz PCI/%s) "
|
||||
"Ethernet[%d] ", dev->name,
|
||||
"Ethernet[%d] %s\n", dev->name,
|
||||
(cp->cas_flags & CAS_FLAG_REG_PLUS) ? "+" : "",
|
||||
(i & BIM_CFG_32BIT) ? "32" : "64",
|
||||
(i & BIM_CFG_66MHZ) ? "66" : "33",
|
||||
(cp->phy_type == CAS_PHY_SERDES) ? "Fi" : "Cu", pdev->irq);
|
||||
|
||||
for (i = 0; i < 6; i++)
|
||||
printk("%2.2x%c", dev->dev_addr[i],
|
||||
i == 5 ? ' ' : ':');
|
||||
printk("\n");
|
||||
(cp->phy_type == CAS_PHY_SERDES) ? "Fi" : "Cu", pdev->irq,
|
||||
print_mac(mac, dev->dev_addr));
|
||||
|
||||
pci_set_drvdata(pdev, dev);
|
||||
cp->hw_running = 1;
|
||||
|
Reference in New Issue
Block a user