diff options
Diffstat (limited to 'sound/isa/gus/gusmax.c')
-rw-r--r-- | sound/isa/gus/gusmax.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/gus/gusmax.c b/sound/isa/gus/gusmax.c index ac11cae8589a..52498c9d411e 100644 --- a/sound/isa/gus/gusmax.c +++ b/sound/isa/gus/gusmax.c | |||
@@ -105,7 +105,7 @@ static int __init snd_gusmax_detect(struct snd_gus_card * gus) | |||
105 | return 0; | 105 | return 0; |
106 | } | 106 | } |
107 | 107 | ||
108 | static irqreturn_t snd_gusmax_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 108 | static irqreturn_t snd_gusmax_interrupt(int irq, void *dev_id) |
109 | { | 109 | { |
110 | struct snd_gusmax *maxcard = (struct snd_gusmax *) dev_id; | 110 | struct snd_gusmax *maxcard = (struct snd_gusmax *) dev_id; |
111 | int loop, max = 5; | 111 | int loop, max = 5; |
@@ -115,12 +115,12 @@ static irqreturn_t snd_gusmax_interrupt(int irq, void *dev_id, struct pt_regs *r | |||
115 | loop = 0; | 115 | loop = 0; |
116 | if (inb(maxcard->gus_status_reg)) { | 116 | if (inb(maxcard->gus_status_reg)) { |
117 | handled = 1; | 117 | handled = 1; |
118 | snd_gus_interrupt(irq, maxcard->gus, regs); | 118 | snd_gus_interrupt(irq, maxcard->gus); |
119 | loop++; | 119 | loop++; |
120 | } | 120 | } |
121 | if (inb(maxcard->pcm_status_reg) & 0x01) { /* IRQ bit is set? */ | 121 | if (inb(maxcard->pcm_status_reg) & 0x01) { /* IRQ bit is set? */ |
122 | handled = 1; | 122 | handled = 1; |
123 | snd_cs4231_interrupt(irq, maxcard->cs4231, regs); | 123 | snd_cs4231_interrupt(irq, maxcard->cs4231); |
124 | loop++; | 124 | loop++; |
125 | } | 125 | } |
126 | } while (loop && --max > 0); | 126 | } while (loop && --max > 0); |