diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2022-06-23 14:51:41 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-06-27 14:16:39 +0200 |
commit | 8e750817a1943b49d81c633f48370bce93bab98c (patch) | |
tree | da2205a52ff735833f7bf31683b22376c6bab5d7 /sound/soc/au1x/psc-i2s.c | |
parent | ASoC: rockchip: Migrate to new style legacy DAI naming flag (diff) | |
download | linux-8e750817a1943b49d81c633f48370bce93bab98c.tar.xz linux-8e750817a1943b49d81c633f48370bce93bab98c.zip |
ASoC: au1x: 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-28-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/au1x/psc-i2s.c')
-rw-r--r-- | sound/soc/au1x/psc-i2s.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c index 530a072d7427..79b5ae4e494c 100644 --- a/sound/soc/au1x/psc-i2s.c +++ b/sound/soc/au1x/psc-i2s.c @@ -286,7 +286,8 @@ static const struct snd_soc_dai_driver au1xpsc_i2s_dai_template = { }; static const struct snd_soc_component_driver au1xpsc_i2s_component = { - .name = "au1xpsc-i2s", + .name = "au1xpsc-i2s", + .legacy_dai_naming = 1, }; static int au1xpsc_i2s_drvprobe(struct platform_device *pdev) |