diff options
Diffstat (limited to 'drivers/net/cpmac.c')
-rw-r--r-- | drivers/net/cpmac.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/cpmac.c b/drivers/net/cpmac.c index 017a5361b980..d39a77cba1af 100644 --- a/drivers/net/cpmac.c +++ b/drivers/net/cpmac.c | |||
@@ -1103,7 +1103,6 @@ static int __devinit cpmac_probe(struct platform_device *pdev) | |||
1103 | struct cpmac_priv *priv; | 1103 | struct cpmac_priv *priv; |
1104 | struct net_device *dev; | 1104 | struct net_device *dev; |
1105 | struct plat_cpmac_data *pdata; | 1105 | struct plat_cpmac_data *pdata; |
1106 | DECLARE_MAC_BUF(mac); | ||
1107 | 1106 | ||
1108 | pdata = pdev->dev.platform_data; | 1107 | pdata = pdev->dev.platform_data; |
1109 | 1108 | ||
@@ -1180,8 +1179,8 @@ static int __devinit cpmac_probe(struct platform_device *pdev) | |||
1180 | if (netif_msg_probe(priv)) { | 1179 | if (netif_msg_probe(priv)) { |
1181 | printk(KERN_INFO | 1180 | printk(KERN_INFO |
1182 | "cpmac: device %s (regs: %p, irq: %d, phy: %s, " | 1181 | "cpmac: device %s (regs: %p, irq: %d, phy: %s, " |
1183 | "mac: %s)\n", dev->name, (void *)mem->start, dev->irq, | 1182 | "mac: %pM)\n", dev->name, (void *)mem->start, dev->irq, |
1184 | priv->phy_name, print_mac(mac, dev->dev_addr)); | 1183 | priv->phy_name, dev->dev_addr); |
1185 | } | 1184 | } |
1186 | return 0; | 1185 | return 0; |
1187 | 1186 | ||