diff options
author | Komuro <komurojun-mbn@nifty.com> | 2007-02-09 21:57:35 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-17 15:16:08 -0500 |
commit | e363d138ed37138eb6c892b4195fa2d03fb33af6 (patch) | |
tree | ba3f0c5350d77a08d3921ee8892b1f1963db1627 /drivers/net/pcmcia/3c574_cs.c | |
parent | 76884679c644a34ead40d74f4df6075a61d51990 (diff) |
PCMCIA-NETDEV : the 2nd argument of el3_interrrupt and smc_interrupt is struct net_device*
Signed-off-by: Komuro <komurojun-mbn@nifty.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/pcmcia/3c574_cs.c')
-rw-r--r-- | drivers/net/pcmcia/3c574_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/pcmcia/3c574_cs.c b/drivers/net/pcmcia/3c574_cs.c index 448bf4a78016..c7bd9c1c7f31 100644 --- a/drivers/net/pcmcia/3c574_cs.c +++ b/drivers/net/pcmcia/3c574_cs.c | |||
@@ -915,7 +915,7 @@ static void media_check(unsigned long arg) | |||
915 | if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { | 915 | if ((inw(ioaddr + EL3_STATUS) & IntLatch) && (inb(ioaddr + Timer) == 0xff)) { |
916 | if (!lp->fast_poll) | 916 | if (!lp->fast_poll) |
917 | printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); | 917 | printk(KERN_INFO "%s: interrupt(s) dropped!\n", dev->name); |
918 | el3_interrupt(dev->irq, lp); | 918 | el3_interrupt(dev->irq, dev); |
919 | lp->fast_poll = HZ; | 919 | lp->fast_poll = HZ; |
920 | } | 920 | } |
921 | if (lp->fast_poll) { | 921 | if (lp->fast_poll) { |