From: Ranjani Sridharan Date: Tue, 7 Mar 2023 09:39:13 +0000 (+0200) Subject: ASoC: SOF: Intel: SKL: Fix device description X-Git-Tag: baikal/mips/sdk6.1~190 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=311aabdd98b8095d7546e003666c6ebc60d249a9;p=kernel.git ASoC: SOF: Intel: SKL: Fix device description [ Upstream commit bd34ca3f5d32817e80e53dc9ced5357e5a9465df ] Add missing ops_free callback for SKL/KBL platforms. Fixes: 8b9655fd8ee0 ("ASoC: SOF: Intel: add ops for SKL/KBL") Signed-off-by: Ranjani Sridharan Reviewed-by: Pierre-Louis Bossart Reviewed-by: Bard Liao Signed-off-by: Peter Ujfalusi Link: https://lore.kernel.org/r/20230307093914.25409-4-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- diff --git a/sound/soc/sof/intel/pci-skl.c b/sound/soc/sof/intel/pci-skl.c index 3a99dc444f92e..5b4bccf819658 100644 --- a/sound/soc/sof/intel/pci-skl.c +++ b/sound/soc/sof/intel/pci-skl.c @@ -38,6 +38,7 @@ static struct sof_dev_desc skl_desc = { .nocodec_tplg_filename = "sof-skl-nocodec.tplg", .ops = &sof_skl_ops, .ops_init = sof_skl_ops_init, + .ops_free = hda_ops_free, }; static struct sof_dev_desc kbl_desc = { @@ -61,6 +62,7 @@ static struct sof_dev_desc kbl_desc = { .nocodec_tplg_filename = "sof-kbl-nocodec.tplg", .ops = &sof_skl_ops, .ops_init = sof_skl_ops_init, + .ops_free = hda_ops_free, }; /* PCI IDs */