ASoC: atmel: Migrate to new style legacy DAI naming flag
authorCharles Keepax <ckeepax@opensource.cirrus.com>
Thu, 23 Jun 2022 12:51:33 +0000 (13:51 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 27 Jun 2022 12:16:31 +0000 (13:16 +0100)
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-20-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/atmel/atmel-classd.c
sound/soc/atmel/atmel-i2s.c
sound/soc/atmel/atmel-pdmic.c
sound/soc/atmel/atmel_ssc_dai.c
sound/soc/atmel/mchp-i2s-mcc.c
sound/soc/atmel/mchp-pdmc.c
sound/soc/atmel/mchp-spdifrx.c
sound/soc/atmel/mchp-spdiftx.c

index 74b7b26..87d6d6e 100644 (file)
@@ -458,6 +458,7 @@ static const struct snd_soc_component_driver atmel_classd_cpu_dai_component = {
        .num_controls           = ARRAY_SIZE(atmel_classd_snd_controls),
        .idle_bias_on           = 1,
        .use_pmdown_time        = 1,
+       .legacy_dai_naming      = 1,
 };
 
 /* ASoC sound card */
index ba56d6a..425d66e 100644 (file)
@@ -564,7 +564,8 @@ static struct snd_soc_dai_driver atmel_i2s_dai = {
 };
 
 static const struct snd_soc_component_driver atmel_i2s_component = {
-       .name   = "atmel-i2s",
+       .name                   = "atmel-i2s",
+       .legacy_dai_naming      = 1,
 };
 
 static int atmel_i2s_sama5d2_mck_init(struct atmel_i2s_dev *dev,
index ea34efa..77ff12b 100644 (file)
@@ -481,6 +481,7 @@ static const struct snd_soc_component_driver atmel_pdmic_cpu_dai_component = {
        .num_controls           = ARRAY_SIZE(atmel_pdmic_snd_controls),
        .idle_bias_on           = 1,
        .use_pmdown_time        = 1,
+       .legacy_dai_naming      = 1,
 };
 
 /* ASoC sound card */
index c92905e..8aae0be 100644 (file)
@@ -858,9 +858,10 @@ static struct snd_soc_dai_driver atmel_ssc_dai = {
 };
 
 static const struct snd_soc_component_driver atmel_ssc_component = {
-       .name           = "atmel-ssc",
-       .suspend        = atmel_ssc_suspend,
-       .resume         = atmel_ssc_resume,
+       .name                   = "atmel-ssc",
+       .suspend                = atmel_ssc_suspend,
+       .resume                 = atmel_ssc_resume,
+       .legacy_dai_naming      = 1,
 };
 
 static int asoc_ssc_init(struct device *dev)
index 269eab5..6dfb96c 100644 (file)
@@ -928,7 +928,8 @@ static struct snd_soc_dai_driver mchp_i2s_mcc_dai = {
 };
 
 static const struct snd_soc_component_driver mchp_i2s_mcc_component = {
-       .name   = "mchp-i2s-mcc",
+       .name                   = "mchp-i2s-mcc",
+       .legacy_dai_naming      = 1,
 };
 
 #ifdef CONFIG_OF
index b9f6370..aba7c5c 100644 (file)
@@ -423,6 +423,7 @@ static const struct snd_soc_component_driver mchp_pdmc_dai_component = {
        .num_controls = ARRAY_SIZE(mchp_pdmc_snd_controls),
        .open = &mchp_pdmc_open,
        .close = &mchp_pdmc_close,
+       .legacy_dai_naming = 1,
 };
 
 static const unsigned int mchp_pdmc_1mic[] = {1};
index 5fc9684..0d37b78 100644 (file)
@@ -846,7 +846,8 @@ static struct snd_soc_dai_driver mchp_spdifrx_dai = {
 };
 
 static const struct snd_soc_component_driver mchp_spdifrx_component = {
-       .name           = "mchp-spdifrx",
+       .name                   = "mchp-spdifrx",
+       .legacy_dai_naming      = 1,
 };
 
 static const struct of_device_id mchp_spdifrx_dt_ids[] = {
index d243800..78d5bcf 100644 (file)
@@ -753,7 +753,8 @@ static struct snd_soc_dai_driver mchp_spdiftx_dai = {
 };
 
 static const struct snd_soc_component_driver mchp_spdiftx_component = {
-       .name           = "mchp-spdiftx",
+       .name                   = "mchp-spdiftx",
+       .legacy_dai_naming      = 1,
 };
 
 static const struct of_device_id mchp_spdiftx_dt_ids[] = {