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/irda/donauboe.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/irda/donauboe.c')
-rw-r--r-- | drivers/net/irda/donauboe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/irda/donauboe.c b/drivers/net/irda/donauboe.c index 33c07d5275da..7a9128181e68 100644 --- a/drivers/net/irda/donauboe.c +++ b/drivers/net/irda/donauboe.c | |||
@@ -709,7 +709,7 @@ stuff_byte (__u8 byte, __u8 * buf) | |||
709 | } | 709 | } |
710 | 710 | ||
711 | static irqreturn_t | 711 | static irqreturn_t |
712 | toshoboe_probeinterrupt (int irq, void *dev_id, struct pt_regs *regs) | 712 | toshoboe_probeinterrupt (int irq, void *dev_id) |
713 | { | 713 | { |
714 | struct toshoboe_cb *self = (struct toshoboe_cb *) dev_id; | 714 | struct toshoboe_cb *self = (struct toshoboe_cb *) dev_id; |
715 | __u8 irqstat; | 715 | __u8 irqstat; |
@@ -1161,7 +1161,7 @@ dumpbufs(skb->data,skb->len,'>'); | |||
1161 | 1161 | ||
1162 | /*interrupt handler */ | 1162 | /*interrupt handler */ |
1163 | static irqreturn_t | 1163 | static irqreturn_t |
1164 | toshoboe_interrupt (int irq, void *dev_id, struct pt_regs *regs) | 1164 | toshoboe_interrupt (int irq, void *dev_id) |
1165 | { | 1165 | { |
1166 | struct toshoboe_cb *self = (struct toshoboe_cb *) dev_id; | 1166 | struct toshoboe_cb *self = (struct toshoboe_cb *) dev_id; |
1167 | __u8 irqstat; | 1167 | __u8 irqstat; |