diff options
author | Carlo Caione <carlo@endlessm.com> | 2017-10-20 12:18:57 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-10-26 16:15:55 +0200 |
commit | 2fe30129b0a6a8ddf71c46c8fb4524cb89739bc0 (patch) | |
tree | b8f7329f1cf46956a27e5d340b97b12aa8d1b843 /sound | |
parent | d9f8f9b2f3e2b95875cd59ae5c3276e4662e7513 (diff) |
ASoC: intel: byt: Enable IN2 map quirk for a KIANO laptop
This cherry-trails laptop has the internal mic connected to the IN2
input pins. Enable the quirk to correctly map the routes.
Signed-off-by: Carlo Caione <carlo@endlessm.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/intel/boards/bytcr_rt5651.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sound/soc/intel/boards/bytcr_rt5651.c b/sound/soc/intel/boards/bytcr_rt5651.c index 0df9067e4382..d955836c6870 100644 --- a/sound/soc/intel/boards/bytcr_rt5651.c +++ b/sound/soc/intel/boards/bytcr_rt5651.c @@ -250,6 +250,14 @@ static const struct dmi_system_id byt_rt5651_quirk_table[] = { .driver_data = (void *)(BYT_RT5651_DMIC_MAP | BYT_RT5651_DMIC_EN), }, + { + .callback = byt_rt5651_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "KIANO"), + DMI_MATCH(DMI_PRODUCT_NAME, "KIANO SlimNote 14.2"), + }, + .driver_data = (void *)(BYT_RT5651_IN2_MAP), + }, {} }; |