ASoC: samsung: 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-34-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Charles Keepax 2022-06-23 13:51:47 +01:00 committed by Mark Brown
parent 4cc4e22843
commit f7bfa516a3
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
5 changed files with 16 additions and 10 deletions

View File

@ -1143,6 +1143,8 @@ static const struct snd_soc_component_driver samsung_i2s_component = {
.suspend = i2s_suspend, .suspend = i2s_suspend,
.resume = i2s_resume, .resume = i2s_resume,
.legacy_dai_naming = 1,
}; };
#define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \ #define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \

View File

@ -480,7 +480,8 @@ static struct snd_soc_dai_driver s3c_pcm_dai[] = {
}; };
static const struct snd_soc_component_driver s3c_pcm_component = { static const struct snd_soc_component_driver s3c_pcm_component = {
.name = "s3c-pcm", .name = "s3c-pcm",
.legacy_dai_naming = 1,
}; };
static int s3c_pcm_dev_probe(struct platform_device *pdev) static int s3c_pcm_dev_probe(struct platform_device *pdev)

View File

@ -192,9 +192,10 @@ static struct snd_soc_dai_driver s3c2412_i2s_dai = {
}; };
static const struct snd_soc_component_driver s3c2412_i2s_component = { static const struct snd_soc_component_driver s3c2412_i2s_component = {
.name = "s3c2412-i2s", .name = "s3c2412-i2s",
.suspend = s3c2412_i2s_suspend, .suspend = s3c2412_i2s_suspend,
.resume = s3c2412_i2s_resume, .resume = s3c2412_i2s_resume,
.legacy_dai_naming = 1,
}; };
static int s3c2412_iis_dev_probe(struct platform_device *pdev) static int s3c2412_iis_dev_probe(struct platform_device *pdev)

View File

@ -415,9 +415,10 @@ static struct snd_soc_dai_driver s3c24xx_i2s_dai = {
}; };
static const struct snd_soc_component_driver s3c24xx_i2s_component = { static const struct snd_soc_component_driver s3c24xx_i2s_component = {
.name = "s3c24xx-i2s", .name = "s3c24xx-i2s",
.suspend = s3c24xx_i2s_suspend, .suspend = s3c24xx_i2s_suspend,
.resume = s3c24xx_i2s_resume, .resume = s3c24xx_i2s_resume,
.legacy_dai_naming = 1,
}; };
static int s3c24xx_iis_dev_probe(struct platform_device *pdev) static int s3c24xx_iis_dev_probe(struct platform_device *pdev)

View File

@ -352,9 +352,10 @@ static struct snd_soc_dai_driver samsung_spdif_dai = {
}; };
static const struct snd_soc_component_driver samsung_spdif_component = { static const struct snd_soc_component_driver samsung_spdif_component = {
.name = "samsung-spdif", .name = "samsung-spdif",
.suspend = spdif_suspend, .suspend = spdif_suspend,
.resume = spdif_resume, .resume = spdif_resume,
.legacy_dai_naming = 1,
}; };
static int spdif_probe(struct platform_device *pdev) static int spdif_probe(struct platform_device *pdev)