diff options
Diffstat (limited to 'drivers/net/pcmcia/axnet_cs.c')
-rw-r--r-- | drivers/net/pcmcia/axnet_cs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/pcmcia/axnet_cs.c b/drivers/net/pcmcia/axnet_cs.c index e97f1519a15f..3f61fde70d73 100644 --- a/drivers/net/pcmcia/axnet_cs.c +++ b/drivers/net/pcmcia/axnet_cs.c | |||
@@ -356,10 +356,10 @@ static int axnet_config(struct pcmcia_device *link) | |||
356 | ei_status.tx_start_page = AXNET_START_PG; | 356 | ei_status.tx_start_page = AXNET_START_PG; |
357 | ei_status.rx_start_page = AXNET_START_PG + TX_PAGES; | 357 | ei_status.rx_start_page = AXNET_START_PG + TX_PAGES; |
358 | ei_status.stop_page = AXNET_STOP_PG; | 358 | ei_status.stop_page = AXNET_STOP_PG; |
359 | ei_status.reset_8390 = &axnet_reset_8390; | 359 | ei_status.reset_8390 = axnet_reset_8390; |
360 | ei_status.get_8390_hdr = &get_8390_hdr; | 360 | ei_status.get_8390_hdr = get_8390_hdr; |
361 | ei_status.block_input = &block_input; | 361 | ei_status.block_input = block_input; |
362 | ei_status.block_output = &block_output; | 362 | ei_status.block_output = block_output; |
363 | 363 | ||
364 | if (inb(dev->base_addr + AXNET_TEST) != 0) | 364 | if (inb(dev->base_addr + AXNET_TEST) != 0) |
365 | info->flags |= IS_AX88790; | 365 | info->flags |= IS_AX88790; |
@@ -530,7 +530,7 @@ static int axnet_open(struct net_device *dev) | |||
530 | 530 | ||
531 | info->link_status = 0x00; | 531 | info->link_status = 0x00; |
532 | init_timer(&info->watchdog); | 532 | init_timer(&info->watchdog); |
533 | info->watchdog.function = &ei_watchdog; | 533 | info->watchdog.function = ei_watchdog; |
534 | info->watchdog.data = (u_long)dev; | 534 | info->watchdog.data = (u_long)dev; |
535 | info->watchdog.expires = jiffies + HZ; | 535 | info->watchdog.expires = jiffies + HZ; |
536 | add_timer(&info->watchdog); | 536 | add_timer(&info->watchdog); |