aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/maestro3.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/maestro3.c')
-rw-r--r--sound/pci/maestro3.c4
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)
1605#endif 1605#endif
1606 1606
1607 /* ack ints */ 1607 /* ack ints */
1608 snd_m3_outw(chip, HOST_INT_STATUS, status); 1608 outb(status, chip->iobase + HOST_INT_STATUS);
1609 1609
1610 return IRQ_HANDLED; 1610 return IRQ_HANDLED;
1611} 1611}
@@ -2367,7 +2367,7 @@ static int snd_m3_free(m3_t *chip)
2367 kfree(chip->substreams); 2367 kfree(chip->substreams);
2368 } 2368 }
2369 if (chip->iobase) { 2369 if (chip->iobase) {
2370 snd_m3_outw(chip, HOST_INT_CTRL, 0); /* disable ints */ 2370 outw(0, chip->iobase + HOST_INT_CTRL); /* disable ints */
2371 } 2371 }
2372 2372
2373#ifdef CONFIG_PM 2373#ifdef CONFIG_PM