mirror of https://gitee.com/openkylin/linux.git
ASoC: mediatek: use for_each_rtd_codecs/cpus_dai() macro
This patch switch to use plural form macro. - for_each_rtd_codec_dai() + for_each_rtd_codec_dais() - for_each_rtd_codec_dai_rollback() + for_each_rtd_codec_dais_rollback() - for_each_rtd_cpu_dai() + for_each_rtd_cpu_dais() - for_each_rtd_cpu_dai_rollback() + for_each_rtd_cpu_dais_rollback() Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/87zhcqgohd.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
5dd1677c81
commit
c865452023
|
@ -47,7 +47,7 @@ static int mt8173_rt5650_rt5514_hw_params(struct snd_pcm_substream *substream,
|
|||
struct snd_soc_dai *codec_dai;
|
||||
int i, ret;
|
||||
|
||||
for_each_rtd_codec_dai(rtd, i, codec_dai) {
|
||||
for_each_rtd_codec_dais(rtd, i, codec_dai) {
|
||||
/* pll from mclk 12.288M */
|
||||
ret = snd_soc_dai_set_pll(codec_dai, 0, 0, MCLK_FOR_CODECS,
|
||||
params_rate(params) * 512);
|
||||
|
|
|
@ -51,7 +51,7 @@ static int mt8173_rt5650_rt5676_hw_params(struct snd_pcm_substream *substream,
|
|||
struct snd_soc_dai *codec_dai;
|
||||
int i, ret;
|
||||
|
||||
for_each_rtd_codec_dai(rtd, i, codec_dai) {
|
||||
for_each_rtd_codec_dais(rtd, i, codec_dai) {
|
||||
/* pll from mclk 12.288M */
|
||||
ret = snd_soc_dai_set_pll(codec_dai, 0, 0, MCLK_FOR_CODECS,
|
||||
params_rate(params) * 512);
|
||||
|
|
|
@ -78,7 +78,7 @@ static int mt8173_rt5650_hw_params(struct snd_pcm_substream *substream,
|
|||
break;
|
||||
}
|
||||
|
||||
for_each_rtd_codec_dai(rtd, i, codec_dai) {
|
||||
for_each_rtd_codec_dais(rtd, i, codec_dai) {
|
||||
/* pll from mclk */
|
||||
ret = snd_soc_dai_set_pll(codec_dai, 0, 0, mclk_clock,
|
||||
params_rate(params) * 512);
|
||||
|
|
|
@ -52,7 +52,7 @@ static int mt8183_da7219_i2s_hw_params(struct snd_pcm_substream *substream,
|
|||
if (ret < 0)
|
||||
dev_err(rtd->dev, "failed to set cpu dai sysclk\n");
|
||||
|
||||
for_each_rtd_codec_dai(rtd, j, codec_dai) {
|
||||
for_each_rtd_codec_dais(rtd, j, codec_dai) {
|
||||
|
||||
if (!strcmp(codec_dai->component->name, "da7219.5-001a")) {
|
||||
ret = snd_soc_dai_set_sysclk(codec_dai,
|
||||
|
@ -85,7 +85,7 @@ static int mt8183_da7219_hw_free(struct snd_pcm_substream *substream)
|
|||
struct snd_soc_dai *codec_dai;
|
||||
int ret = 0, j;
|
||||
|
||||
for_each_rtd_codec_dai(rtd, j, codec_dai) {
|
||||
for_each_rtd_codec_dais(rtd, j, codec_dai) {
|
||||
|
||||
if (!strcmp(codec_dai->component->name, "da7219.5-001a")) {
|
||||
ret = snd_soc_dai_set_pll(codec_dai,
|
||||
|
|
Loading…
Reference in New Issue