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/wireless/netwave_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/wireless/netwave_cs.c')
-rw-r--r-- | drivers/net/wireless/netwave_cs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/netwave_cs.c b/drivers/net/wireless/netwave_cs.c index 36b5e004305e..6714e0dfa8d6 100644 --- a/drivers/net/wireless/netwave_cs.c +++ b/drivers/net/wireless/netwave_cs.c | |||
@@ -207,7 +207,7 @@ static int netwave_start_xmit( struct sk_buff *skb, struct net_device *dev); | |||
207 | static int netwave_rx( struct net_device *dev); | 207 | static int netwave_rx( struct net_device *dev); |
208 | 208 | ||
209 | /* Interrupt routines */ | 209 | /* Interrupt routines */ |
210 | static irqreturn_t netwave_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 210 | static irqreturn_t netwave_interrupt(int irq, void *dev_id); |
211 | static void netwave_watchdog(struct net_device *); | 211 | static void netwave_watchdog(struct net_device *); |
212 | 212 | ||
213 | /* Statistics */ | 213 | /* Statistics */ |
@@ -1072,7 +1072,7 @@ static int netwave_start_xmit(struct sk_buff *skb, struct net_device *dev) { | |||
1072 | } /* netwave_start_xmit */ | 1072 | } /* netwave_start_xmit */ |
1073 | 1073 | ||
1074 | /* | 1074 | /* |
1075 | * Function netwave_interrupt (irq, dev_id, regs) | 1075 | * Function netwave_interrupt (irq, dev_id) |
1076 | * | 1076 | * |
1077 | * This function is the interrupt handler for the Netwave card. This | 1077 | * This function is the interrupt handler for the Netwave card. This |
1078 | * routine will be called whenever: | 1078 | * routine will be called whenever: |
@@ -1081,7 +1081,7 @@ static int netwave_start_xmit(struct sk_buff *skb, struct net_device *dev) { | |||
1081 | * ready to transmit another packet. | 1081 | * ready to transmit another packet. |
1082 | * 3. A command has completed execution. | 1082 | * 3. A command has completed execution. |
1083 | */ | 1083 | */ |
1084 | static irqreturn_t netwave_interrupt(int irq, void* dev_id, struct pt_regs *regs) | 1084 | static irqreturn_t netwave_interrupt(int irq, void* dev_id) |
1085 | { | 1085 | { |
1086 | kio_addr_t iobase; | 1086 | kio_addr_t iobase; |
1087 | u_char __iomem *ramBase; | 1087 | u_char __iomem *ramBase; |