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

ASoC: rt*: Remove now redundant non_legacy_dai_naming flag



The ASoC core has now been changed to default to the non-legacy DAI
naming, as such drivers using the new scheme no longer need to specify
the non_legacy_dai_naming flag.

Signed-off-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220623125250.2355471-57-ckeepax@opensource.cirrus.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8d4470b8
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -2176,7 +2176,6 @@ static const struct snd_soc_component_driver soc_component_dev_rt1011 = {
	.set_pll = rt1011_set_component_pll,
	.set_pll = rt1011_set_component_pll,
	.use_pmdown_time = 1,
	.use_pmdown_time = 1,
	.endianness = 1,
	.endianness = 1,
	.non_legacy_dai_naming = 1,
};
};


static const struct regmap_config rt1011_regmap = {
static const struct regmap_config rt1011_regmap = {
+0 −1
Original line number Original line Diff line number Diff line
@@ -1071,7 +1071,6 @@ static const struct snd_soc_component_driver soc_component_dev_rt1015 = {
	.set_pll = rt1015_set_component_pll,
	.set_pll = rt1015_set_component_pll,
	.use_pmdown_time	= 1,
	.use_pmdown_time	= 1,
	.endianness		= 1,
	.endianness		= 1,
	.non_legacy_dai_naming	= 1,
};
};


static const struct regmap_config rt1015_regmap = {
static const struct regmap_config rt1015_regmap = {
+0 −1
Original line number Original line Diff line number Diff line
@@ -89,7 +89,6 @@ static const struct snd_soc_component_driver rt1015p_component_driver = {
	.idle_bias_on		= 1,
	.idle_bias_on		= 1,
	.use_pmdown_time	= 1,
	.use_pmdown_time	= 1,
	.endianness		= 1,
	.endianness		= 1,
	.non_legacy_dai_naming	= 1,
};
};


static struct snd_soc_dai_driver rt1015p_dai_driver = {
static struct snd_soc_dai_driver rt1015p_dai_driver = {
+0 −1
Original line number Original line Diff line number Diff line
@@ -595,7 +595,6 @@ static const struct snd_soc_component_driver soc_component_dev_rt1016 = {
	.set_pll = rt1016_set_component_pll,
	.set_pll = rt1016_set_component_pll,
	.use_pmdown_time	= 1,
	.use_pmdown_time	= 1,
	.endianness		= 1,
	.endianness		= 1,
	.non_legacy_dai_naming	= 1,
};
};


static const struct regmap_config rt1016_regmap = {
static const struct regmap_config rt1016_regmap = {
+0 −1
Original line number Original line Diff line number Diff line
@@ -522,7 +522,6 @@ static const struct snd_soc_component_driver soc_component_dev_rt1019 = {
	.num_dapm_widgets	= ARRAY_SIZE(rt1019_dapm_widgets),
	.num_dapm_widgets	= ARRAY_SIZE(rt1019_dapm_widgets),
	.dapm_routes		= rt1019_dapm_routes,
	.dapm_routes		= rt1019_dapm_routes,
	.num_dapm_routes	= ARRAY_SIZE(rt1019_dapm_routes),
	.num_dapm_routes	= ARRAY_SIZE(rt1019_dapm_routes),
	.non_legacy_dai_naming	= 1,
	.endianness		= 1,
	.endianness		= 1,
};
};


Loading