diff options
author | Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> | 2023-09-19 17:21:25 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-09-19 13:48:36 +0100 |
commit | fb0b8d299781be8d46b3612aa96cef28da0d93f4 (patch) | |
tree | b82ccccde11a0a8ff0853354813472619da54cb2 | |
parent | b399f9706a1cbae42731cc420a46cfb9c3c6b10f (diff) | |
download | linux-stable-fb0b8d299781be8d46b3612aa96cef28da0d93f4.tar.gz linux-stable-fb0b8d299781be8d46b3612aa96cef28da0d93f4.tar.bz2 linux-stable-fb0b8d299781be8d46b3612aa96cef28da0d93f4.zip |
ASoC: Intel: sof_sdw: add support for SKU 0B14
One more missing SKU in the list.
Closes: https://github.com/thesofproject/linux/issues/4543
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Chao Song <chao.song@linux.intel.com>
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Link: https://lore.kernel.org/r/20230919092125.1922468-1-yung-chuan.liao@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/intel/boards/sof_sdw.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index 5a1c750e6ae6..842649501e30 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -380,6 +380,16 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { .callback = sof_sdw_quirk_cb, .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), + DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B14"), + }, + /* No Jack */ + .driver_data = (void *)SOF_SDW_TGL_HDMI, + }, + + { + .callback = sof_sdw_quirk_cb, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B29"), }, .driver_data = (void *)(SOF_SDW_TGL_HDMI | |