Unverified Commit eeb021ee authored by Charles Keepax's avatar Charles Keepax Committed by Mark Brown
Browse files

ASoC: spear: 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-6-ckeepax@opensource.cirrus.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5f9d6998
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -173,6 +173,7 @@ static struct snd_soc_dai_driver spdif_in_dai = {

static const struct snd_soc_component_driver spdif_in_component = {
	.name			= "spdif-in",
	.legacy_dai_naming	= 1,
};

static irqreturn_t spdif_in_irq(int irq, void *arg)
+2 −1
Original line number Diff line number Diff line
@@ -274,6 +274,7 @@ static struct snd_soc_dai_driver spdif_out_dai = {

static const struct snd_soc_component_driver spdif_out_component = {
	.name			= "spdif-out",
	.legacy_dai_naming	= 1,
};

static int spdif_out_probe(struct platform_device *pdev)