diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-11-18 10:50:32 +0900 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-11-19 18:22:40 +0000 |
commit | b2b2afbb48eac7215f951a8a462aa6837e0d495f (patch) | |
tree | 9ea0263c7ee74b8e7dbf129c36081179f890da4c /include/sound | |
parent | eb65ccdb083639f8a9b6919c94d1df570396a9a1 (diff) | |
download | linux-b2b2afbb48eac7215f951a8a462aa6837e0d495f.tar.gz linux-b2b2afbb48eac7215f951a8a462aa6837e0d495f.tar.bz2 linux-b2b2afbb48eac7215f951a8a462aa6837e0d495f.zip |
ASoC: soc-component: tidyup snd_soc_pcm_component_new/free() parameter
This patch uses rtd instead of pcm at snd_soc_pcm_component_new/free()
parameter.
This is prepare for dai_link remove bug fix on topology.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87pnhqx89j.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/soc-component.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound/soc-component.h b/include/sound/soc-component.h index 6aa3ecb7b6d3..f8fadf0e696a 100644 --- a/include/sound/soc-component.h +++ b/include/sound/soc-component.h @@ -412,7 +412,7 @@ struct page *snd_soc_pcm_component_page(struct snd_pcm_substream *substream, unsigned long offset); int snd_soc_pcm_component_mmap(struct snd_pcm_substream *substream, struct vm_area_struct *vma); -int snd_soc_pcm_component_new(struct snd_pcm *pcm); -void snd_soc_pcm_component_free(struct snd_pcm *pcm); +int snd_soc_pcm_component_new(struct snd_soc_pcm_runtime *rtd); +void snd_soc_pcm_component_free(struct snd_soc_pcm_runtime *rtd); #endif /* __SOC_COMPONENT_H */ |