summaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl/p1022_rdk.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2020-03-27 18:29:20 +0100
committerMark Brown <broonie@kernel.org>2020-03-27 18:29:20 +0100
commit1c521d7e62262793789845989edca57dea24eb7d (patch)
treedd891362188494b9d665229696ffb72187998a00 /sound/soc/fsl/p1022_rdk.c
parentMerge branch 'asoc-5.6' into asoc-linus (diff)
parentMerge series "ASoC: Intel: add SoundWire machine driver" from Pierre-Louis Bo... (diff)
downloadlinux-1c521d7e62262793789845989edca57dea24eb7d.tar.xz
linux-1c521d7e62262793789845989edca57dea24eb7d.zip
Merge branch 'asoc-5.7' into asoc-next
Diffstat (limited to 'sound/soc/fsl/p1022_rdk.c')
-rw-r--r--sound/soc/fsl/p1022_rdk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/p1022_rdk.c b/sound/soc/fsl/p1022_rdk.c
index 72687235c0ae..f5374fe354ab 100644
--- a/sound/soc/fsl/p1022_rdk.c
+++ b/sound/soc/fsl/p1022_rdk.c
@@ -134,14 +134,14 @@ static int p1022_rdk_startup(struct snd_pcm_substream *substream)
int ret = 0;
/* Tell the codec driver what the serial protocol is. */
- ret = snd_soc_dai_set_fmt(rtd->codec_dai, mdata->dai_format);
+ ret = snd_soc_dai_set_fmt(asoc_rtd_to_codec(rtd, 0), mdata->dai_format);
if (ret < 0) {
dev_err(dev, "could not set codec driver audio format (ret=%i)\n",
ret);
return ret;
}
- ret = snd_soc_dai_set_pll(rtd->codec_dai, 0, 0, mdata->clk_frequency,
+ ret = snd_soc_dai_set_pll(asoc_rtd_to_codec(rtd, 0), 0, 0, mdata->clk_frequency,
mdata->clk_frequency);
if (ret < 0) {
dev_err(dev, "could not set codec PLL frequency (ret=%i)\n",