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

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


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

static const struct snd_soc_component_driver davinci_i2s_component = {
	.name			= DRV_NAME,
	.legacy_dai_naming	= 1,
};

static int davinci_i2s_probe(struct platform_device *pdev)
+2 −1
Original line number Diff line number Diff line
@@ -1766,6 +1766,7 @@ static struct snd_soc_dai_driver davinci_mcasp_dai[] = {

static const struct snd_soc_component_driver davinci_mcasp_component = {
	.name			= "davinci-mcasp",
	.legacy_dai_naming	= 1,
};

/* Some HW specific values and defaults. The rest is filled in from DT. */
+2 −1
Original line number Diff line number Diff line
@@ -186,6 +186,7 @@ static struct snd_soc_dai_driver davinci_vcif_dai = {

static const struct snd_soc_component_driver davinci_vcif_component = {
	.name			= "davinci-vcif",
	.legacy_dai_naming	= 1,
};

static int davinci_vcif_probe(struct platform_device *pdev)
+2 −1
Original line number Diff line number Diff line
@@ -454,6 +454,7 @@ static struct snd_soc_dai_driver omap_dmic_dai = {

static const struct snd_soc_component_driver omap_dmic_component = {
	.name			= "omap-dmic",
	.legacy_dai_naming	= 1,
};

static int asoc_dmic_probe(struct platform_device *pdev)
+1 −0
Original line number Diff line number Diff line
@@ -275,6 +275,7 @@ static const struct snd_soc_dai_ops hdmi_dai_ops = {

static const struct snd_soc_component_driver omap_hdmi_component = {
	.name = "omapdss_hdmi",
	.legacy_dai_naming = 1,
};

static struct snd_soc_dai_driver omap5_hdmi_dai = {
Loading