diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2022-05-19 17:42:59 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-06-06 13:34:02 +0200 |
commit | 1830a30ec4cf1642a429e80dbbeb86aa7825c71a (patch) | |
tree | 8657c8f1673d70a11d50783f9e22cf6eea9e0b76 /sound/soc/img/img-i2s-out.c | |
parent | ASoC: hisilicon: Rename set_fmt_new back to set_fmt (diff) | |
download | linux-1830a30ec4cf1642a429e80dbbeb86aa7825c71a.tar.xz linux-1830a30ec4cf1642a429e80dbbeb86aa7825c71a.zip |
ASoC: img: Rename set_fmt_new back to set_fmt
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-38-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | sound/soc/img/img-i2s-out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/img/img-i2s-out.c b/sound/soc/img/img-i2s-out.c index d92539603d6c..9ec6fc528e2b 100644 --- a/sound/soc/img/img-i2s-out.c +++ b/sound/soc/img/img-i2s-out.c @@ -381,7 +381,7 @@ static int img_i2s_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) static const struct snd_soc_dai_ops img_i2s_out_dai_ops = { .trigger = img_i2s_out_trigger, .hw_params = img_i2s_out_hw_params, - .set_fmt_new = img_i2s_out_set_fmt + .set_fmt = img_i2s_out_set_fmt }; static int img_i2s_out_dai_probe(struct snd_soc_dai *dai) |