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 /sound/pci/sonicvibes.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 'sound/pci/sonicvibes.c')
-rw-r--r-- | sound/pci/sonicvibes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index e5d4def1aa6f..f9b8afabda9c 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c | |||
@@ -580,7 +580,7 @@ static int snd_sonicvibes_trigger(struct sonicvibes * sonic, int what, int cmd) | |||
580 | return result; | 580 | return result; |
581 | } | 581 | } |
582 | 582 | ||
583 | static irqreturn_t snd_sonicvibes_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 583 | static irqreturn_t snd_sonicvibes_interrupt(int irq, void *dev_id) |
584 | { | 584 | { |
585 | struct sonicvibes *sonic = dev_id; | 585 | struct sonicvibes *sonic = dev_id; |
586 | unsigned char status; | 586 | unsigned char status; |
@@ -601,7 +601,7 @@ static irqreturn_t snd_sonicvibes_interrupt(int irq, void *dev_id, struct pt_reg | |||
601 | } | 601 | } |
602 | if (sonic->rmidi) { | 602 | if (sonic->rmidi) { |
603 | if (status & SV_MIDI_IRQ) | 603 | if (status & SV_MIDI_IRQ) |
604 | snd_mpu401_uart_interrupt(irq, sonic->rmidi->private_data, regs); | 604 | snd_mpu401_uart_interrupt(irq, sonic->rmidi->private_data); |
605 | } | 605 | } |
606 | if (status & SV_UD_IRQ) { | 606 | if (status & SV_UD_IRQ) { |
607 | unsigned char udreg; | 607 | unsigned char udreg; |