diff options
Diffstat (limited to 'drivers/net/3c515.c')
-rw-r--r-- | drivers/net/3c515.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/3c515.c b/drivers/net/3c515.c index a0f8b6e2d0af..a2c24684a44a 100644 --- a/drivers/net/3c515.c +++ b/drivers/net/3c515.c | |||
@@ -570,7 +570,6 @@ static int corkscrew_setup(struct net_device *dev, int ioaddr, | |||
570 | unsigned int eeprom[0x40], checksum = 0; /* EEPROM contents */ | 570 | unsigned int eeprom[0x40], checksum = 0; /* EEPROM contents */ |
571 | int i; | 571 | int i; |
572 | int irq; | 572 | int irq; |
573 | DECLARE_MAC_BUF(mac); | ||
574 | 573 | ||
575 | #ifdef __ISAPNP__ | 574 | #ifdef __ISAPNP__ |
576 | if (idev) { | 575 | if (idev) { |
@@ -636,7 +635,7 @@ static int corkscrew_setup(struct net_device *dev, int ioaddr, | |||
636 | checksum = (checksum ^ (checksum >> 8)) & 0xff; | 635 | checksum = (checksum ^ (checksum >> 8)) & 0xff; |
637 | if (checksum != 0x00) | 636 | if (checksum != 0x00) |
638 | printk(" ***INVALID CHECKSUM %4.4x*** ", checksum); | 637 | printk(" ***INVALID CHECKSUM %4.4x*** ", checksum); |
639 | printk(" %s", print_mac(mac, dev->dev_addr)); | 638 | printk(" %pM", dev->dev_addr); |
640 | if (eeprom[16] == 0x11c7) { /* Corkscrew */ | 639 | if (eeprom[16] == 0x11c7) { /* Corkscrew */ |
641 | if (request_dma(dev->dma, "3c515")) { | 640 | if (request_dma(dev->dma, "3c515")) { |
642 | printk(", DMA %d allocation failed", dev->dma); | 641 | printk(", DMA %d allocation failed", dev->dma); |