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/isdn/gigaset/usb-gigaset.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/isdn/gigaset/usb-gigaset.c')
-rw-r--r-- | drivers/isdn/gigaset/usb-gigaset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/gigaset/usb-gigaset.c b/drivers/isdn/gigaset/usb-gigaset.c index 6e05d9d4a51a..4ffa9eb1c28e 100644 --- a/drivers/isdn/gigaset/usb-gigaset.c +++ b/drivers/isdn/gigaset/usb-gigaset.c | |||
@@ -362,7 +362,7 @@ static void gigaset_modem_fill(unsigned long data) | |||
362 | * | 362 | * |
363 | * It is called if the data was received from the device. | 363 | * It is called if the data was received from the device. |
364 | */ | 364 | */ |
365 | static void gigaset_read_int_callback(struct urb *urb, struct pt_regs *regs) | 365 | static void gigaset_read_int_callback(struct urb *urb) |
366 | { | 366 | { |
367 | struct inbuf_t *inbuf = urb->context; | 367 | struct inbuf_t *inbuf = urb->context; |
368 | struct cardstate *cs = inbuf->cs; | 368 | struct cardstate *cs = inbuf->cs; |
@@ -420,7 +420,7 @@ static void gigaset_read_int_callback(struct urb *urb, struct pt_regs *regs) | |||
420 | 420 | ||
421 | 421 | ||
422 | /* This callback routine is called when data was transmitted to the device. */ | 422 | /* This callback routine is called when data was transmitted to the device. */ |
423 | static void gigaset_write_bulk_callback(struct urb *urb, struct pt_regs *regs) | 423 | static void gigaset_write_bulk_callback(struct urb *urb) |
424 | { | 424 | { |
425 | struct cardstate *cs = urb->context; | 425 | struct cardstate *cs = urb->context; |
426 | unsigned long flags; | 426 | unsigned long flags; |