summaryrefslogtreecommitdiff
path: root/sound/soc/sof/sof-of-dev.c
diff options
context:
space:
mode:
authorDaniel Baluta <daniel.baluta@nxp.com>2019-11-07 23:41:34 +0200
committerDaniel Baluta <daniel.baluta@nxp.com>2019-11-27 21:50:22 +0200
commit37ade25a5892aaf5d7e978dd8bf38b4ee4343364 (patch)
treeef03d872642bbf1effdbc6d23d2a0f3239b2f677 /sound/soc/sof/sof-of-dev.c
parent19fa41a7ab8226a7ca92eb72d40edc0f3a39ed63 (diff)
ASoC: SOF: nocodec: Amend arguments for sof_nocodec_setup()
Set the drv_name and tplg_filename for nocodec machine driver in sof_machine_check(). This means the sof_nocodec_setup() does not need the mach, plat_data or desc arguments any longer. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Diffstat (limited to 'sound/soc/sof/sof-of-dev.c')
-rw-r--r--sound/soc/sof/sof-of-dev.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/sof/sof-of-dev.c b/sound/soc/sof/sof-of-dev.c
index 81deb5582d77..e5961a9fc006 100644
--- a/sound/soc/sof/sof-of-dev.c
+++ b/sound/soc/sof/sof-of-dev.c
@@ -73,7 +73,11 @@ static int sof_of_probe(struct platform_device *pdev)
mach = devm_kzalloc(dev, sizeof(*mach), GFP_KERNEL);
if (!mach)
return -ENOMEM;
- ret = sof_nocodec_setup(dev, sof_pdata, mach, desc, ops);
+
+ mach->drv_name = "sof-nocodec";
+ sof_pdata->fw_filename = desc->nocodec_fw_filename;
+ sof_pdata->tplg_filename = desc->nocodec_tplg_filename;
+ ret = sof_nocodec_setup(dev, ops);
if (ret < 0)
return ret;
#else