diff options
author | Ville Syrjala <syrjala@sci.fi> | 2005-05-12 14:14:28 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-05-29 10:08:20 +0200 |
commit | 88491386be67f659e6b2c76c7463c997ce4c4ebb (patch) | |
tree | 87f8c45818c8e263049446658a0ac674d8d5d7df /sound/pci/maestro3.c | |
parent | cb5a6ffc5c09bc354af69407dae710dcddcced37 (diff) | |
download | linux-88491386be67f659e6b2c76c7463c997ce4c4ebb.tar.gz linux-88491386be67f659e6b2c76c7463c997ce4c4ebb.tar.bz2 linux-88491386be67f659e6b2c76c7463c997ce4c4ebb.zip |
[ALSA] maestro3: Fix interrupt ack and disable
Maestro3 driver
Due to a typo interrupts were never actually acked or disabled.
Signed-off-by: Ville Syrjala <syrjala@sci.fi>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/maestro3.c')
-rw-r--r-- | sound/pci/maestro3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/maestro3.c b/sound/pci/maestro3.c index 9f184ea8a9d3..293cc10e3cbb 100644 --- a/sound/pci/maestro3.c +++ b/sound/pci/maestro3.c @@ -1605,7 +1605,7 @@ snd_m3_interrupt(int irq, void *dev_id, struct pt_regs *regs) #endif /* ack ints */ - snd_m3_outw(chip, HOST_INT_STATUS, status); + outb(status, chip->iobase + HOST_INT_STATUS); return IRQ_HANDLED; } @@ -2367,7 +2367,7 @@ static int snd_m3_free(m3_t *chip) kfree(chip->substreams); } if (chip->iobase) { - snd_m3_outw(chip, HOST_INT_CTRL, 0); /* disable ints */ + outw(0, chip->iobase + HOST_INT_CTRL); /* disable ints */ } #ifdef CONFIG_PM |