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>
This commit is contained in:
parent
9fe17b5d47
commit
8213466596
1 changed files with 3 additions and 3 deletions
|
@ -347,7 +347,7 @@ static int maya_gpio_sw_put(struct snd_kcontrol *kcontrol,
|
||||||
|
|
||||||
/* known working input slots (0-4) */
|
/* known working input slots (0-4) */
|
||||||
#define MAYA_LINE_IN 1 /* in-2 */
|
#define MAYA_LINE_IN 1 /* in-2 */
|
||||||
#define MAYA_MIC_IN 4 /* in-5 */
|
#define MAYA_MIC_IN 3 /* in-4 */
|
||||||
|
|
||||||
static void wm8776_select_input(struct snd_maya44 *chip, int idx, int line)
|
static void wm8776_select_input(struct snd_maya44 *chip, int idx, int line)
|
||||||
{
|
{
|
||||||
|
@ -393,8 +393,8 @@ static int maya_rec_src_put(struct snd_kcontrol *kcontrol,
|
||||||
int changed;
|
int changed;
|
||||||
|
|
||||||
mutex_lock(&chip->mutex);
|
mutex_lock(&chip->mutex);
|
||||||
changed = maya_set_gpio_bits(chip->ice, GPIO_MIC_RELAY,
|
changed = maya_set_gpio_bits(chip->ice, 1 << GPIO_MIC_RELAY,
|
||||||
sel ? GPIO_MIC_RELAY : 0);
|
sel ? (1 << GPIO_MIC_RELAY) : 0);
|
||||||
wm8776_select_input(chip, 0, sel ? MAYA_MIC_IN : MAYA_LINE_IN);
|
wm8776_select_input(chip, 0, sel ? MAYA_MIC_IN : MAYA_LINE_IN);
|
||||||
mutex_unlock(&chip->mutex);
|
mutex_unlock(&chip->mutex);
|
||||||
return changed;
|
return changed;
|
||||||
|
|
Loading…
Add table
Reference in a new issue