diff options
author | Joe Perches <joe@perches.com> | 2007-10-03 20:59:30 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:42 -0400 |
commit | 0795af5729b18218767fab27c44b1384f72dc9ad (patch) | |
tree | 67c16df84aa6ec219340b8ea1b5cfb0e8150a216 /drivers/net/natsemi.c | |
parent | 95ea36275f3c9a1d3d04c217b4b576c657c4e70e (diff) |
[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>
Diffstat (limited to 'drivers/net/natsemi.c')
-rw-r--r-- | drivers/net/natsemi.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/net/natsemi.c b/drivers/net/natsemi.c index 5ee4e8795d23..ea38da6d31ff 100644 --- a/drivers/net/natsemi.c +++ b/drivers/net/natsemi.c | |||
@@ -805,6 +805,7 @@ static int __devinit natsemi_probe1 (struct pci_dev *pdev, | |||
805 | const int pcibar = 1; /* PCI base address register */ | 805 | const int pcibar = 1; /* PCI base address register */ |
806 | int prev_eedata; | 806 | int prev_eedata; |
807 | u32 tmp; | 807 | u32 tmp; |
808 | DECLARE_MAC_BUF(mac); | ||
808 | 809 | ||
809 | /* when built into the kernel, we only print version if device is found */ | 810 | /* when built into the kernel, we only print version if device is found */ |
810 | #ifndef MODULE | 811 | #ifndef MODULE |
@@ -958,12 +959,10 @@ static int __devinit natsemi_probe1 (struct pci_dev *pdev, | |||
958 | goto err_create_file; | 959 | goto err_create_file; |
959 | 960 | ||
960 | if (netif_msg_drv(np)) { | 961 | if (netif_msg_drv(np)) { |
961 | printk(KERN_INFO "natsemi %s: %s at %#08lx (%s), ", | 962 | printk(KERN_INFO "natsemi %s: %s at %#08lx " |
962 | dev->name, natsemi_pci_info[chip_idx].name, iostart, | 963 | "(%s), %s, IRQ %d", |
963 | pci_name(np->pci_dev)); | 964 | dev->name, natsemi_pci_info[chip_idx].name, iostart, |
964 | for (i = 0; i < ETH_ALEN-1; i++) | 965 | pci_name(np->pci_dev), print_mac(mac, dev->dev_addr), irq); |
965 | printk("%02x:", dev->dev_addr[i]); | ||
966 | printk("%02x, IRQ %d", dev->dev_addr[i], irq); | ||
967 | if (dev->if_port == PORT_TP) | 966 | if (dev->if_port == PORT_TP) |
968 | printk(", port TP.\n"); | 967 | printk(", port TP.\n"); |
969 | else if (np->ignore_phy) | 968 | else if (np->ignore_phy) |