diff options
| author | Takashi Iwai <tiwai@suse.de> | 2010-05-12 10:43:32 -0400 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2010-05-12 10:43:32 -0400 |
| commit | 8213466596bf10b75887754773ee13c10cf86f5c (patch) | |
| tree | b52ab03e9d1812ab069989a48c76636293a1387c | |
| parent | 9fe17b5d47d3d3c85b35623dea8f571a184134c0 (diff) | |
ALSA: ice1724 - Fix ESI Maya44 capture source control
The capture source control of maya44 was wrongly coded with the bit
shift instead of the bit mask. Also, the slot for line-in was
wrongly assigned (slot 5 instead of 4).
Reported-by: Alex Chernyshoff <alexdsp@gmail.com>
Cc: <stable@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/pci/ice1712/maya44.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ice1712/maya44.c b/sound/pci/ice1712/maya44.c index 3e1c20ae2f1c..726fd4b92e19 100644 --- a/sound/pci/ice1712/maya44.c +++ b/sound/pci/ice1712/maya44.c | |||
| @@ -347,7 +347,7 @@ static int maya_gpio_sw_put(struct snd_kcontrol *kcontrol, | |||
| 347 | 347 | ||
| 348 | /* known working input slots (0-4) */ | 348 | /* known working input slots (0-4) */ |
| 349 | #define MAYA_LINE_IN 1 /* in-2 */ | 349 | #define MAYA_LINE_IN 1 /* in-2 */ |
| 350 | #define MAYA_MIC_IN 4 /* in-5 */ | 350 | #define MAYA_MIC_IN 3 /* in-4 */ |
| 351 | 351 | ||
| 352 | static void wm8776_select_input(struct snd_maya44 *chip, int idx, int line) | 352 | static void wm8776_select_input(struct snd_maya44 *chip, int idx, int line) |
| 353 | { | 353 | { |
| @@ -393,8 +393,8 @@ static int maya_rec_src_put(struct snd_kcontrol *kcontrol, | |||
| 393 | int changed; | 393 | int changed; |
| 394 | 394 | ||
| 395 | mutex_lock(&chip->mutex); | 395 | mutex_lock(&chip->mutex); |
| 396 | changed = maya_set_gpio_bits(chip->ice, GPIO_MIC_RELAY, | 396 | changed = maya_set_gpio_bits(chip->ice, 1 << GPIO_MIC_RELAY, |
| 397 | sel ? GPIO_MIC_RELAY : 0); | 397 | sel ? (1 << GPIO_MIC_RELAY) : 0); |
| 398 | wm8776_select_input(chip, 0, sel ? MAYA_MIC_IN : MAYA_LINE_IN); | 398 | wm8776_select_input(chip, 0, sel ? MAYA_MIC_IN : MAYA_LINE_IN); |
| 399 | mutex_unlock(&chip->mutex); | 399 | mutex_unlock(&chip->mutex); |
| 400 | return changed; | 400 | return changed; |
