diff options
Diffstat (limited to 'sound/pci/fm801.c')
-rw-r--r-- | sound/pci/fm801.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/fm801.c b/sound/pci/fm801.c index bdfda1997d5b..3ec7d7ee04dd 100644 --- a/sound/pci/fm801.c +++ b/sound/pci/fm801.c | |||
@@ -520,7 +520,7 @@ static snd_pcm_uframes_t snd_fm801_capture_pointer(struct snd_pcm_substream *sub | |||
520 | return bytes_to_frames(substream->runtime, ptr); | 520 | return bytes_to_frames(substream->runtime, ptr); |
521 | } | 521 | } |
522 | 522 | ||
523 | static irqreturn_t snd_fm801_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 523 | static irqreturn_t snd_fm801_interrupt(int irq, void *dev_id) |
524 | { | 524 | { |
525 | struct fm801 *chip = dev_id; | 525 | struct fm801 *chip = dev_id; |
526 | unsigned short status; | 526 | unsigned short status; |
@@ -561,7 +561,7 @@ static irqreturn_t snd_fm801_interrupt(int irq, void *dev_id, struct pt_regs *re | |||
561 | snd_pcm_period_elapsed(chip->capture_substream); | 561 | snd_pcm_period_elapsed(chip->capture_substream); |
562 | } | 562 | } |
563 | if (chip->rmidi && (status & FM801_IRQ_MPU)) | 563 | if (chip->rmidi && (status & FM801_IRQ_MPU)) |
564 | snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs); | 564 | snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data); |
565 | if (status & FM801_IRQ_VOLUME) | 565 | if (status & FM801_IRQ_VOLUME) |
566 | ;/* TODO */ | 566 | ;/* TODO */ |
567 | 567 | ||