aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tokenring/abyss.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2007-10-03 20:59:30 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:51:42 -0400
commit0795af5729b18218767fab27c44b1384f72dc9ad (patch)
tree67c16df84aa6ec219340b8ea1b5cfb0e8150a216 /drivers/net/tokenring/abyss.c
parent95ea36275f3c9a1d3d04c217b4b576c657c4e70e (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/tokenring/abyss.c')
-rw-r--r--drivers/net/tokenring/abyss.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/net/tokenring/abyss.c b/drivers/net/tokenring/abyss.c
index 22fad5112406..124cfd4fbcf4 100644
--- a/drivers/net/tokenring/abyss.c
+++ b/drivers/net/tokenring/abyss.c
@@ -97,8 +97,9 @@ static int __devinit abyss_attach(struct pci_dev *pdev, const struct pci_device_
97 static int versionprinted; 97 static int versionprinted;
98 struct net_device *dev; 98 struct net_device *dev;
99 struct net_local *tp; 99 struct net_local *tp;
100 int i, ret, pci_irq_line; 100 int ret, pci_irq_line;
101 unsigned long pci_ioaddr; 101 unsigned long pci_ioaddr;
102 DECLARE_MAC_BUF(mac);
102 103
103 if (versionprinted++ == 0) 104 if (versionprinted++ == 0)
104 printk("%s", version); 105 printk("%s", version);
@@ -145,12 +146,9 @@ static int __devinit abyss_attach(struct pci_dev *pdev, const struct pci_device_
145 } 146 }
146 147
147 abyss_read_eeprom(dev); 148 abyss_read_eeprom(dev);
148 149
149 printk("%s: Ring Station Address: ", dev->name); 150 printk("%s: Ring Station Address: %s\n",
150 printk("%2.2x", dev->dev_addr[0]); 151 dev->name, print_mac(mac, dev->dev_addr));
151 for (i = 1; i < 6; i++)
152 printk(":%2.2x", dev->dev_addr[i]);
153 printk("\n");
154 152
155 tp = netdev_priv(dev); 153 tp = netdev_priv(dev);
156 tp->setnselout = abyss_setnselout_pins; 154 tp->setnselout = abyss_setnselout_pins;