diff options
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_conexant.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index 35bebe59908d..eecc154d0b63 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c | |||
@@ -3420,13 +3420,13 @@ static void cx_auto_check_auto_mic(struct hda_codec *codec) | |||
3420 | if (is_ext_mic(codec, cfg->inputs[0].pin) && | 3420 | if (is_ext_mic(codec, cfg->inputs[0].pin) && |
3421 | is_int_mic(codec, cfg->inputs[1].pin)) { | 3421 | is_int_mic(codec, cfg->inputs[1].pin)) { |
3422 | spec->auto_mic = 1; | 3422 | spec->auto_mic = 1; |
3423 | spec->auto_mic_ext = 1; | 3423 | spec->auto_mic_ext = 0; |
3424 | return; | 3424 | return; |
3425 | } | 3425 | } |
3426 | if (is_int_mic(codec, cfg->inputs[1].pin) && | 3426 | if (is_int_mic(codec, cfg->inputs[0].pin) && |
3427 | is_ext_mic(codec, cfg->inputs[0].pin)) { | 3427 | is_ext_mic(codec, cfg->inputs[1].pin)) { |
3428 | spec->auto_mic = 1; | 3428 | spec->auto_mic = 1; |
3429 | spec->auto_mic_ext = 0; | 3429 | spec->auto_mic_ext = 1; |
3430 | return; | 3430 | return; |
3431 | } | 3431 | } |
3432 | } | 3432 | } |