diff options
author | Hans de Goede <hdegoede@redhat.com> | 2018-05-21 14:42:51 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-05-23 09:37:57 +0100 |
commit | 5aff078ac81a3be58f7a2e2be0f33bc9ce062bac (patch) | |
tree | f98674eb99cd2c169bb6b098a66eeca9b286e33e /sound/soc/intel/boards/cht_bsw_nau8824.c | |
parent | b18c6c3c7768b7b81c2250bbccd0c3c0aed6b71f (diff) | |
download | linux-stable-5aff078ac81a3be58f7a2e2be0f33bc9ce062bac.tar.gz linux-stable-5aff078ac81a3be58f7a2e2be0f33bc9ce062bac.tar.bz2 linux-stable-5aff078ac81a3be58f7a2e2be0f33bc9ce062bac.zip |
ASoC: Intel: cht_bsw_nau8824: Fix jack_type to include SND_JACK_MICROPHONE
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>
Diffstat (limited to 'sound/soc/intel/boards/cht_bsw_nau8824.c')
-rw-r--r-- | sound/soc/intel/boards/cht_bsw_nau8824.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/boards/cht_bsw_nau8824.c b/sound/soc/intel/boards/cht_bsw_nau8824.c index 072e94b69e57..30c46977d53c 100644 --- a/sound/soc/intel/boards/cht_bsw_nau8824.c +++ b/sound/soc/intel/boards/cht_bsw_nau8824.c @@ -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)); |