aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ioc3-eth.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/ioc3-eth.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/ioc3-eth.c')
-rw-r--r--drivers/net/ioc3-eth.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c
index 05d2bc15144e..373f72cdbe8e 100644
--- a/drivers/net/ioc3-eth.c
+++ b/drivers/net/ioc3-eth.c
@@ -443,18 +443,12 @@ static void ioc3_get_eaddr_nic(struct ioc3_private *ip)
443 */ 443 */
444static void ioc3_get_eaddr(struct ioc3_private *ip) 444static void ioc3_get_eaddr(struct ioc3_private *ip)
445{ 445{
446 int i; 446 DECLARE_MAC_BUF(mac);
447
448 447
449 ioc3_get_eaddr_nic(ip); 448 ioc3_get_eaddr_nic(ip);
450 449
451 printk("Ethernet address is "); 450 printk("Ethernet address is %s.\n",
452 for (i = 0; i < 6; i++) { 451 print_mac(mac, priv_netdev(ip)->dev_addr));
453 printk("%02x", priv_netdev(ip)->dev_addr[i]);
454 if (i < 5)
455 printk(":");
456 }
457 printk(".\n");
458} 452}
459 453
460static void __ioc3_set_mac_address(struct net_device *dev) 454static void __ioc3_set_mac_address(struct net_device *dev)