diff options
Diffstat (limited to 'sound/isa/opl3sa2.c')
| -rw-r--r-- | sound/isa/opl3sa2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/opl3sa2.c b/sound/isa/opl3sa2.c index da92bf6c392b..419b4ebbf00e 100644 --- a/sound/isa/opl3sa2.c +++ b/sound/isa/opl3sa2.c | |||
| @@ -294,7 +294,7 @@ static int __devinit snd_opl3sa2_detect(struct snd_opl3sa2 *chip) | |||
| 294 | return 0; | 294 | return 0; |
| 295 | } | 295 | } |
| 296 | 296 | ||
| 297 | static irqreturn_t snd_opl3sa2_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 297 | static irqreturn_t snd_opl3sa2_interrupt(int irq, void *dev_id) |
| 298 | { | 298 | { |
| 299 | unsigned short status; | 299 | unsigned short status; |
| 300 | struct snd_opl3sa2 *chip = dev_id; | 300 | struct snd_opl3sa2 *chip = dev_id; |
| @@ -312,12 +312,12 @@ static irqreturn_t snd_opl3sa2_interrupt(int irq, void *dev_id, struct pt_regs * | |||
| 312 | 312 | ||
| 313 | if ((status & 0x10) && chip->rmidi != NULL) { | 313 | if ((status & 0x10) && chip->rmidi != NULL) { |
| 314 | handled = 1; | 314 | handled = 1; |
| 315 | snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs); | 315 | snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data); |
| 316 | } | 316 | } |
| 317 | 317 | ||
| 318 | if (status & 0x07) { /* TI,CI,PI */ | 318 | if (status & 0x07) { /* TI,CI,PI */ |
| 319 | handled = 1; | 319 | handled = 1; |
| 320 | snd_cs4231_interrupt(irq, chip->cs4231, regs); | 320 | snd_cs4231_interrupt(irq, chip->cs4231); |
| 321 | } | 321 | } |
| 322 | 322 | ||
| 323 | if (status & 0x40) { /* hardware volume change */ | 323 | if (status & 0x40) { /* hardware volume change */ |
