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: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220623125250.2355471-16-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Charles Keepax 2022-06-23 13:51:29 +01:00 коммит произвёл Mark Brown
Родитель f450b5dbce
Коммит 725cf3bc60
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 24D68B725D5487D0
1 изменённых файлов: 8 добавлений и 6 удалений

Просмотреть файл

@ -388,15 +388,17 @@ static snd_pcm_uframes_t kmb_pcm_pointer(struct snd_soc_component *component,
} }
static const struct snd_soc_component_driver kmb_component = { static const struct snd_soc_component_driver kmb_component = {
.name = "kmb", .name = "kmb",
.pcm_construct = kmb_platform_pcm_new, .pcm_construct = kmb_platform_pcm_new,
.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)