ASoC: au1x: 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-32-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
a839a53b9d
commit
2c73f5fd20
|
@ -206,7 +206,7 @@ static const struct snd_soc_dai_ops au1xi2s_dai_ops = {
|
||||||
.startup = au1xi2s_startup,
|
.startup = au1xi2s_startup,
|
||||||
.trigger = au1xi2s_trigger,
|
.trigger = au1xi2s_trigger,
|
||||||
.hw_params = au1xi2s_hw_params,
|
.hw_params = au1xi2s_hw_params,
|
||||||
.set_fmt_new = au1xi2s_set_fmt,
|
.set_fmt = au1xi2s_set_fmt,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct snd_soc_dai_driver au1xi2s_dai_driver = {
|
static struct snd_soc_dai_driver au1xi2s_dai_driver = {
|
||||||
|
|
|
@ -266,7 +266,7 @@ static const struct snd_soc_dai_ops au1xpsc_i2s_dai_ops = {
|
||||||
.startup = au1xpsc_i2s_startup,
|
.startup = au1xpsc_i2s_startup,
|
||||||
.trigger = au1xpsc_i2s_trigger,
|
.trigger = au1xpsc_i2s_trigger,
|
||||||
.hw_params = au1xpsc_i2s_hw_params,
|
.hw_params = au1xpsc_i2s_hw_params,
|
||||||
.set_fmt_new = au1xpsc_i2s_set_fmt,
|
.set_fmt = au1xpsc_i2s_set_fmt,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct snd_soc_dai_driver au1xpsc_i2s_dai_template = {
|
static const struct snd_soc_dai_driver au1xpsc_i2s_dai_template = {
|
||||||
|
|
Loading…
Reference in New Issue