diff options
author | Jaroslav Kysela <perex@perex.cz> | 2008-01-16 14:12:34 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-01-31 11:30:03 -0500 |
commit | b8c5b53e1f104a9f877f947cdb86d5c7208d6c9a (patch) | |
tree | b2060c4c3969c446b718392b7851c4fd897b78d3 /sound | |
parent | 6b8d6e5518e2812b150c2d7c1e975a1bd33f0ccc (diff) |
[ALSA] ice1712 - fixed midi input for Hoontech C-Ports
See ALSA bug#1846 for more details.
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/ice1712/hoontech.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ice1712/hoontech.c b/sound/pci/ice1712/hoontech.c index b2cfba16ebdf..b042e5cfc3cd 100644 --- a/sound/pci/ice1712/hoontech.c +++ b/sound/pci/ice1712/hoontech.c | |||
@@ -205,13 +205,13 @@ static int __devinit snd_ice1712_hoontech_init(struct snd_ice1712 *ice) | |||
205 | snd_ice1712_stdsp24_darear(ice, (ice->spec.hoontech.config & ICE1712_STDSP24_DAREAR) ? 1 : 0); | 205 | snd_ice1712_stdsp24_darear(ice, (ice->spec.hoontech.config & ICE1712_STDSP24_DAREAR) ? 1 : 0); |
206 | snd_ice1712_stdsp24_mute(ice, (ice->spec.hoontech.config & ICE1712_STDSP24_MUTE) ? 1 : 0); | 206 | snd_ice1712_stdsp24_mute(ice, (ice->spec.hoontech.config & ICE1712_STDSP24_MUTE) ? 1 : 0); |
207 | snd_ice1712_stdsp24_insel(ice, (ice->spec.hoontech.config & ICE1712_STDSP24_INSEL) ? 1 : 0); | 207 | snd_ice1712_stdsp24_insel(ice, (ice->spec.hoontech.config & ICE1712_STDSP24_INSEL) ? 1 : 0); |
208 | for (box = 0; box < 4; box++) { | 208 | for (box = 0; box < 1; box++) { |
209 | if (ice->spec.hoontech.boxconfig[box] & ICE1712_STDSP24_BOX_MIDI2) | ||
210 | snd_ice1712_stdsp24_midi2(ice, 1); | ||
209 | for (chn = 0; chn < 4; chn++) | 211 | for (chn = 0; chn < 4; chn++) |
210 | snd_ice1712_stdsp24_box_channel(ice, box, chn, (ice->spec.hoontech.boxconfig[box] & (1 << chn)) ? 1 : 0); | 212 | snd_ice1712_stdsp24_box_channel(ice, box, chn, (ice->spec.hoontech.boxconfig[box] & (1 << chn)) ? 1 : 0); |
211 | snd_ice1712_stdsp24_box_midi(ice, box, | 213 | snd_ice1712_stdsp24_box_midi(ice, box, |
212 | (ice->spec.hoontech.boxconfig[box] & ICE1712_STDSP24_BOX_MIDI1) ? 1 : 0); | 214 | (ice->spec.hoontech.boxconfig[box] & ICE1712_STDSP24_BOX_MIDI1) ? 1 : 0); |
213 | if (ice->spec.hoontech.boxconfig[box] & ICE1712_STDSP24_BOX_MIDI2) | ||
214 | snd_ice1712_stdsp24_midi2(ice, 1); | ||
215 | } | 215 | } |
216 | 216 | ||
217 | return 0; | 217 | return 0; |