mirror of https://gitee.com/openkylin/linux.git
[TG3]: Use print_mac
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
137919a9ba
commit
d664537228
|
@ -12361,9 +12361,10 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
|
|||
unsigned long tg3reg_base, tg3reg_len;
|
||||
struct net_device *dev;
|
||||
struct tg3 *tp;
|
||||
int i, err, pm_cap;
|
||||
int err, pm_cap;
|
||||
char str[40];
|
||||
u64 dma_mask, persist_dma_mask;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
if (tg3_version_printed++ == 0)
|
||||
printk(KERN_INFO "%s", version);
|
||||
|
@ -12642,7 +12643,8 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
|
|||
goto err_out_apeunmap;
|
||||
}
|
||||
|
||||
printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] (%s) %s Ethernet ",
|
||||
printk(KERN_INFO "%s: Tigon3 [partno(%s) rev %04x PHY(%s)] "
|
||||
"(%s) %s Ethernet %s\n",
|
||||
dev->name,
|
||||
tp->board_part_number,
|
||||
tp->pci_chip_rev_id,
|
||||
|
@ -12650,11 +12652,8 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
|
|||
tg3_bus_string(tp, str),
|
||||
((tp->tg3_flags & TG3_FLAG_10_100_ONLY) ? "10/100Base-TX" :
|
||||
((tp->tg3_flags2 & TG3_FLG2_ANY_SERDES) ? "1000Base-SX" :
|
||||
"10/100/1000Base-T")));
|
||||
|
||||
for (i = 0; i < 6; i++)
|
||||
printk("%2.2x%c", dev->dev_addr[i],
|
||||
i == 5 ? '\n' : ':');
|
||||
"10/100/1000Base-T")),
|
||||
print_mac(mac, dev->dev_addr));
|
||||
|
||||
printk(KERN_INFO "%s: RXcsums[%d] LinkChgREG[%d] "
|
||||
"MIirq[%d] ASF[%d] WireSpeed[%d] TSOcap[%d]\n",
|
||||
|
|
Loading…
Reference in New Issue