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/macmace.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/macmace.c')
-rw-r--r-- | drivers/net/macmace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/macmace.c b/drivers/net/macmace.c index 57f7c1a2c1d7..6589239b79ee 100644 --- a/drivers/net/macmace.c +++ b/drivers/net/macmace.c | |||
@@ -194,6 +194,7 @@ static int __devinit mace_probe(struct platform_device *pdev) | |||
194 | unsigned char checksum = 0; | 194 | unsigned char checksum = 0; |
195 | static int found = 0; | 195 | static int found = 0; |
196 | int err; | 196 | int err; |
197 | DECLARE_MAC_BUF(mac); | ||
197 | 198 | ||
198 | if (found || macintosh_config->ether_type != MAC_ETHER_MACE) | 199 | if (found || macintosh_config->ether_type != MAC_ETHER_MACE) |
199 | return -ENODEV; | 200 | return -ENODEV; |
@@ -248,9 +249,8 @@ static int __devinit mace_probe(struct platform_device *pdev) | |||
248 | dev->set_multicast_list = mace_set_multicast; | 249 | dev->set_multicast_list = mace_set_multicast; |
249 | dev->set_mac_address = mace_set_address; | 250 | dev->set_mac_address = mace_set_address; |
250 | 251 | ||
251 | printk(KERN_INFO "%s: 68K MACE, hardware address %.2X", dev->name, dev->dev_addr[0]); | 252 | printk(KERN_INFO "%s: 68K MACE, hardware address %s\n", |
252 | for (j = 1 ; j < 6 ; j++) printk(":%.2X", dev->dev_addr[j]); | 253 | dev->name, print_mac(mac, dev->dev_addr)); |
253 | printk("\n"); | ||
254 | 254 | ||
255 | err = register_netdev(dev); | 255 | err = register_netdev(dev); |
256 | if (!err) | 256 | if (!err) |