]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: Intel: cht_bsw_nau8824: Fix jack_type to include SND_JACK_MICROPHONE
authorHans de Goede <hdegoede@redhat.com>
Mon, 21 May 2018 12:42:51 +0000 (14:42 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 23 May 2018 08:37:57 +0000 (09:37 +0100)
The nau8824 codec can detect whether a headset or plain headphones is
inserted (as well as button presses on the headset) as such the jack_type
passed to snd_soc_card_jack_new() should include SND_JACK_MICROPHONE.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/cht_bsw_nau8824.c

index 072e94b69e57939346ac1ba8dc43b12c7e44c4e4..30c46977d53c2827a858fc13bda0663093a2b528 100644 (file)
@@ -120,7 +120,7 @@ static int cht_codec_init(struct snd_soc_pcm_runtime *runtime)
         * KEY_VOLUMEUP
         * KEY_VOLUMEDOWN
         */
-       jack_type = SND_JACK_HEADPHONE | SND_JACK_BTN_0 | SND_JACK_BTN_1 |
+       jack_type = SND_JACK_HEADSET | SND_JACK_BTN_0 | SND_JACK_BTN_1 |
                SND_JACK_BTN_2 | SND_JACK_BTN_3;
        ret = snd_soc_card_jack_new(runtime->card, "Headset", jack_type, jack,
                cht_bsw_jack_pins, ARRAY_SIZE(cht_bsw_jack_pins));