diff options
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) |