diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
commit | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (patch) | |
tree | 93824f573767da634fbc82c388b6d33cc454212b /drivers/net/pcmcia/xirc2ps_cs.c | |
parent | c1a26e7d40fb814716950122353a1a556844286b (diff) | |
parent | 7d12e780e003f93433d49ce78cfedf4b4c52adc5 (diff) |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
IRQ: Typedef the IRQ handler function type
IRQ: Typedef the IRQ flow handler function type
Diffstat (limited to 'drivers/net/pcmcia/xirc2ps_cs.c')
-rw-r--r-- | drivers/net/pcmcia/xirc2ps_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/pcmcia/xirc2ps_cs.c b/drivers/net/pcmcia/xirc2ps_cs.c index 62664c01eb45..f3914f58d67f 100644 --- a/drivers/net/pcmcia/xirc2ps_cs.c +++ b/drivers/net/pcmcia/xirc2ps_cs.c | |||
@@ -308,7 +308,7 @@ static void xirc2ps_detach(struct pcmcia_device *p_dev); | |||
308 | * less on other parts of the kernel. | 308 | * less on other parts of the kernel. |
309 | */ | 309 | */ |
310 | 310 | ||
311 | static irqreturn_t xirc2ps_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 311 | static irqreturn_t xirc2ps_interrupt(int irq, void *dev_id); |
312 | 312 | ||
313 | /**************** | 313 | /**************** |
314 | * A linked list of "instances" of the device. Each actual | 314 | * A linked list of "instances" of the device. Each actual |
@@ -1121,7 +1121,7 @@ static int xirc2ps_resume(struct pcmcia_device *link) | |||
1121 | * This is the Interrupt service route. | 1121 | * This is the Interrupt service route. |
1122 | */ | 1122 | */ |
1123 | static irqreturn_t | 1123 | static irqreturn_t |
1124 | xirc2ps_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 1124 | xirc2ps_interrupt(int irq, void *dev_id) |
1125 | { | 1125 | { |
1126 | struct net_device *dev = (struct net_device *)dev_id; | 1126 | struct net_device *dev = (struct net_device *)dev_id; |
1127 | local_info_t *lp = netdev_priv(dev); | 1127 | local_info_t *lp = netdev_priv(dev); |