diff options
author | Pan Xiuli <xiuli.pan@linux.intel.com> | 2020-01-24 15:36:23 -0600 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-01-27 17:52:10 +0000 |
commit | e3b9f5f4ef92801f62c58665283c61cece0af905 (patch) | |
tree | 9ff7e8c6800c3c261fc6cc3dd75c16f1802e0331 /sound | |
parent | e6110114d18d330c05fd6de9f31283fd086a5a3a (diff) | |
download | linux-e3b9f5f4ef92801f62c58665283c61cece0af905.tar.bz2 |
ASoC: SOF: pci: add missing default_fw_name of JasperLake
jsl_desc missed default_fw_name, this will fail the probe in
nocodec or generice HDA mode due the firmware path is intel/sof/(null)
Signed-off-by: Pan Xiuli <xiuli.pan@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200124213625.30186-6-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sof/sof-pci-dev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/sof/sof-pci-dev.c b/sound/soc/sof/sof-pci-dev.c index d855bc2b76ad..bf01b92f0dac 100644 --- a/sound/soc/sof/sof-pci-dev.c +++ b/sound/soc/sof/sof-pci-dev.c @@ -235,6 +235,7 @@ static const struct sof_dev_desc jsl_desc = { .chip_info = &jsl_chip_info, .default_fw_path = "intel/sof", .default_tplg_path = "intel/sof-tplg", + .default_fw_filename = "sof-jsl.ri", .nocodec_tplg_filename = "sof-jsl-nocodec.tplg", .ops = &sof_cnl_ops, }; |