ASoC: meson: Rename set_fmt_new back to set_fmt
authorCharles Keepax <ckeepax@opensource.cirrus.com>
Thu, 19 May 2022 15:43:03 +0000 (16:43 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 6 Jun 2022 11:34:06 +0000 (12:34 +0100)
Now the core has been migrated across to the new direct clock
specification we can move the drivers back to the normal set_fmt
callback.

Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220519154318.2153729-42-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/meson/aiu-encoder-i2s.c
sound/soc/meson/axg-tdm-interface.c

index 0ab991230deec5053f158688d8004f6fe344bf5a..a0dd914c8ed13616fbcbc0828e36418cfd255391 100644 (file)
@@ -323,7 +323,7 @@ static void aiu_encoder_i2s_shutdown(struct snd_pcm_substream *substream,
 const struct snd_soc_dai_ops aiu_encoder_i2s_dai_ops = {
        .hw_params      = aiu_encoder_i2s_hw_params,
        .hw_free        = aiu_encoder_i2s_hw_free,
-       .set_fmt_new    = aiu_encoder_i2s_set_fmt,
+       .set_fmt        = aiu_encoder_i2s_set_fmt,
        .set_sysclk     = aiu_encoder_i2s_set_sysclk,
        .startup        = aiu_encoder_i2s_startup,
        .shutdown       = aiu_encoder_i2s_shutdown,
index ffdb12d0e01e3d6cdce8ee30d43a491304289b1b..c040c83637e02adae6fce5cb673f09610a5a1bc3 100644 (file)
@@ -394,7 +394,7 @@ static int axg_tdm_iface_probe_dai(struct snd_soc_dai *dai)
 
 static const struct snd_soc_dai_ops axg_tdm_iface_ops = {
        .set_sysclk     = axg_tdm_iface_set_sysclk,
-       .set_fmt_new    = axg_tdm_iface_set_fmt,
+       .set_fmt        = axg_tdm_iface_set_fmt,
        .startup        = axg_tdm_iface_startup,
        .hw_params      = axg_tdm_iface_hw_params,
        .prepare        = axg_tdm_iface_prepare,