projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
385a5c6
)
ASoC: mxs: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer
author
Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com>
Mon, 23 Mar 2020 05:19:39 +0000
(14:19 +0900)
committer
Mark Brown
<broonie@kernel.org>
Fri, 27 Mar 2020 14:44:42 +0000
(14:44 +0000)
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link:
https://lore.kernel.org/r/87lfnrir6c.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/mxs/mxs-sgtl5000.c
patch
|
blob
|
history
diff --git
a/sound/soc/mxs/mxs-sgtl5000.c
b/sound/soc/mxs/mxs-sgtl5000.c
index
9841e1d
..
f46d7ac
100644
(file)
--- a/
sound/soc/mxs/mxs-sgtl5000.c
+++ b/
sound/soc/mxs/mxs-sgtl5000.c
@@
-20,8
+20,8
@@
static int mxs_sgtl5000_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *params)
{
struct snd_soc_pcm_runtime *rtd = substream->private_data;
- struct snd_soc_dai *codec_dai =
rtd->codec_dai
;
- struct snd_soc_dai *cpu_dai =
rtd->cpu_dai
;
+ struct snd_soc_dai *codec_dai =
asoc_rtd_to_codec(rtd, 0)
;
+ struct snd_soc_dai *cpu_dai =
asoc_rtd_to_cpu(rtd, 0)
;
unsigned int rate = params_rate(params);
u32 mclk;
int ret;