diff options
author | Konstantinos Tsimpoukas <kostaslinuxxx@gmail.com> | 2014-08-27 00:21:48 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-08-27 02:17:07 -0400 |
commit | 890b13a308b9df78ad05fc57eb440b32399be35e (patch) | |
tree | 1285a29aa53e298832afad0dad0d7e357b303732 | |
parent | 62afa853cb91288e85a8da6351bd29d798402308 (diff) |
ALSA: ice1712: Replacing hex with #defines
Adds to the readability of the ice1712 driver.
Signed-off-by: Konstantinos Tsimpoukas <kostaslinuxxx@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/ice1712/ice1712.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ice1712/ice1712.c b/sound/pci/ice1712/ice1712.c index 87f7fc41d4f2..206ed2cbcef9 100644 --- a/sound/pci/ice1712/ice1712.c +++ b/sound/pci/ice1712/ice1712.c | |||
@@ -2528,7 +2528,7 @@ static int snd_ice1712_free(struct snd_ice1712 *ice) | |||
2528 | if (!ice->port) | 2528 | if (!ice->port) |
2529 | goto __hw_end; | 2529 | goto __hw_end; |
2530 | /* mask all interrupts */ | 2530 | /* mask all interrupts */ |
2531 | outb(0xc0, ICEMT(ice, IRQ)); | 2531 | outb(ICE1712_MULTI_CAPTURE | ICE1712_MULTI_PLAYBACK, ICEMT(ice, IRQ)); |
2532 | outb(0xff, ICEREG(ice, IRQMASK)); | 2532 | outb(0xff, ICEREG(ice, IRQMASK)); |
2533 | /* --- */ | 2533 | /* --- */ |
2534 | __hw_end: | 2534 | __hw_end: |