diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2022-06-23 14:51:34 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-06-27 14:16:32 +0200 |
commit | 1e63fcc74ace9824f3529eeabbb8f1881a7d3800 (patch) | |
tree | 417e20d955bdf09b2e5658ee15ecb38ac917d629 /sound/soc/fsl/fsl_sai.c | |
parent | ASoC: atmel: Migrate to new style legacy DAI naming flag (diff) | |
download | linux-1e63fcc74ace9824f3529eeabbb8f1881a7d3800.tar.xz linux-1e63fcc74ace9824f3529eeabbb8f1881a7d3800.zip |
ASoC: fsl: Migrate to new style legacy DAI naming flag
Change the legacy DAI naming flag from opting in to the new scheme
(non_legacy_dai_naming), to opting out of it (legacy_dai_naming).
These drivers appear to be on the CPU side of the DAI link and
currently uses the legacy naming, so add the new flag.
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220623125250.2355471-21-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/fsl_sai.c')
-rw-r--r-- | sound/soc/fsl/fsl_sai.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index 4f5bd9597c74..68b5b488deeb 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -767,7 +767,8 @@ static struct snd_soc_dai_driver fsl_sai_dai_template = { }; static const struct snd_soc_component_driver fsl_component = { - .name = "fsl-sai", + .name = "fsl-sai", + .legacy_dai_naming = 1, }; static struct reg_default fsl_sai_reg_defaults_ofs0[] = { |