[PATCH 2/3] smsc911x: replace print_mac with %pM

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Steve Glendinning
Date: Thursday, March 19, 2009 - 3:24 am

Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
---
 drivers/net/smsc911x.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/net/smsc911x.c b/drivers/net/smsc911x.c
index f52bb8a..82157cd 100644
--- a/drivers/net/smsc911x.c
+++ b/drivers/net/smsc911x.c
@@ -1914,7 +1914,6 @@ static int __devinit smsc911x_drv_probe(struct platform_device *pdev)
 	unsigned int intcfg = 0;
 	int res_size, irq_flags;
 	int retval;
-	DECLARE_MAC_BUF(mac);
 
 	pr_info("%s: Driver version %s.\n", SMSC_CHIPNAME, SMSC_DRV_VERSION);
 
@@ -2049,8 +2048,7 @@ static int __devinit smsc911x_drv_probe(struct platform_device *pdev)
 
 	spin_unlock_irq(&pdata->mac_lock);
 
-	dev_info(&dev->dev, "MAC Address: %s\n",
-		 print_mac(mac, dev->dev_addr));
+	dev_info(&dev->dev, "MAC Address: %pM\n", dev->dev_addr);
 
 	return 0;
 
-- 
1.6.0.6

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/3] smsc911x: define status word positions as cons ..., Steve Glendinning, (Thu Mar 19, 3:24 am)
[PATCH 2/3] smsc911x: replace print_mac with %pM, Steve Glendinning, (Thu Mar 19, 3:24 am)
[PATCH 3/3] smsc911x: allow setting of mac address, Steve Glendinning, (Thu Mar 19, 3:24 am)
Re: [PATCH 2/3] smsc911x: replace print_mac with %pM, David Miller, (Thu Mar 19, 11:59 pm)
Re: [PATCH 3/3] smsc911x: allow setting of mac address, David Miller, (Thu Mar 19, 11:59 pm)