Commit 725cf3bc authored by Charles Keepax's avatar Charles Keepax Committed by Mark Brown

ASoC: Intel: 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: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220623125250.2355471-16-ckeepax@opensource.cirrus.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent f450b5db
...@@ -393,10 +393,12 @@ static const struct snd_soc_component_driver kmb_component = { ...@@ -393,10 +393,12 @@ static const struct snd_soc_component_driver kmb_component = {
.open = kmb_pcm_open, .open = kmb_pcm_open,
.trigger = kmb_pcm_trigger, .trigger = kmb_pcm_trigger,
.pointer = kmb_pcm_pointer, .pointer = kmb_pcm_pointer,
.legacy_dai_naming = 1,
}; };
static const struct snd_soc_component_driver kmb_component_dma = { static const struct snd_soc_component_driver kmb_component_dma = {
.name = "kmb", .name = "kmb",
.legacy_dai_naming = 1,
}; };
static int kmb_probe(struct snd_soc_dai *cpu_dai) static int kmb_probe(struct snd_soc_dai *cpu_dai)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment