diff options
Diffstat (limited to 'drivers/net/jazzsonic.c')
-rw-r--r-- | drivers/net/jazzsonic.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/jazzsonic.c b/drivers/net/jazzsonic.c index 07944820f745..334ff9e12cdd 100644 --- a/drivers/net/jazzsonic.c +++ b/drivers/net/jazzsonic.c | |||
@@ -208,7 +208,6 @@ static int __init jazz_sonic_probe(struct platform_device *pdev) | |||
208 | struct sonic_local *lp; | 208 | struct sonic_local *lp; |
209 | struct resource *res; | 209 | struct resource *res; |
210 | int err = 0; | 210 | int err = 0; |
211 | DECLARE_MAC_BUF(mac); | ||
212 | 211 | ||
213 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 212 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
214 | if (!res) | 213 | if (!res) |
@@ -233,8 +232,7 @@ static int __init jazz_sonic_probe(struct platform_device *pdev) | |||
233 | if (err) | 232 | if (err) |
234 | goto out1; | 233 | goto out1; |
235 | 234 | ||
236 | printk("%s: MAC %s IRQ %d\n", | 235 | printk("%s: MAC %pM IRQ %d\n", dev->name, dev->dev_addr, dev->irq); |
237 | dev->name, print_mac(mac, dev->dev_addr), dev->irq); | ||
238 | 236 | ||
239 | return 0; | 237 | return 0; |
240 | 238 | ||