Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: Refactor non_legacy_dai_naming flag

Merge series from Charles Keepax <ckeepax@opensource.cirrus.com>:

Historically, the legacy DAI naming scheme was applied to platform
drivers and the newer scheme to CODEC drivers. During componentisation
the core lost the knowledge of if a driver was a CODEC or platform, they
were all now components. To continue to support the legacy naming on
older platform drivers a flag was added to the snd_soc_component_driver
structure, non_legacy_dai_naming, to indicate to use the new scheme and
this was applied to all CODECs as part of the migration.

However, a slight issue appears to be developing with respect to this
flag being opt in for the non-legacy scheme, which presumably we want to
be the primary scheme used. Many codec drivers appear to forget to
include this flag:

grep -l -r "snd_soc_component_driver" sound/soc/codecs/*.c |
xargs grep -L "non_legacy_dai_naming" | wc
48 48 556

Whilst in many cases the configuration of the DAIs themselves will cause
the core to apply the new scheme anyway, it would seem more sensible to
change the flag to legacy_dai_naming making the new scheme opt out. This
patch series migrates across to such a scheme.

+275 -436
+1
drivers/gpu/drm/vc4/vc4_hdmi.c
··· 1969 1969 1970 1970 static const struct snd_soc_component_driver vc4_hdmi_audio_cpu_dai_comp = { 1971 1971 .name = "vc4-hdmi-cpu-dai-component", 1972 + .legacy_dai_naming = 1, 1972 1973 }; 1973 1974 1974 1975 static int vc4_hdmi_audio_cpu_dai_probe(struct snd_soc_dai *dai)
-1
drivers/media/i2c/tda1997x.c
··· 2517 2517 .idle_bias_on = 1, 2518 2518 .use_pmdown_time = 1, 2519 2519 .endianness = 1, 2520 - .non_legacy_dai_naming = 1, 2521 2520 }; 2522 2521 2523 2522 static int tda1997x_probe(struct i2c_client *client,
+3 -2
drivers/soundwire/intel.c
··· 1097 1097 }; 1098 1098 1099 1099 static const struct snd_soc_component_driver dai_component = { 1100 - .name = "soundwire", 1101 - .suspend = intel_component_dais_suspend 1100 + .name = "soundwire", 1101 + .suspend = intel_component_dais_suspend, 1102 + .legacy_dai_naming = 1, 1102 1103 }; 1103 1104 1104 1105 static int intel_create_dai(struct sdw_cdns *cdns,
+1 -1
include/sound/soc-component.h
··· 179 179 * analogue). 180 180 */ 181 181 unsigned int endianness:1; 182 - unsigned int non_legacy_dai_naming:1; 182 + unsigned int legacy_dai_naming:1; 183 183 184 184 /* this component uses topology and ignore machine driver FEs */ 185 185 const char *ignore_machine;
+1
sound/soc/adi/axi-i2s.c
··· 161 161 162 162 static const struct snd_soc_component_driver axi_i2s_component = { 163 163 .name = "axi-i2s", 164 + .legacy_dai_naming = 1, 164 165 }; 165 166 166 167 static const struct regmap_config axi_i2s_regmap_config = {
+1
sound/soc/adi/axi-spdif.c
··· 167 167 168 168 static const struct snd_soc_component_driver axi_spdif_component = { 169 169 .name = "axi-spdif", 170 + .legacy_dai_naming = 1, 170 171 }; 171 172 172 173 static const struct regmap_config axi_spdif_regmap_config = {
+8 -7
sound/soc/amd/acp/acp-platform.c
··· 267 267 } 268 268 269 269 static const struct snd_soc_component_driver acp_pcm_component = { 270 - .name = DRV_NAME, 271 - .open = acp_dma_open, 272 - .close = acp_dma_close, 273 - .hw_params = acp_dma_hw_params, 274 - .pointer = acp_dma_pointer, 275 - .mmap = acp_dma_mmap, 276 - .pcm_construct = acp_dma_new, 270 + .name = DRV_NAME, 271 + .open = acp_dma_open, 272 + .close = acp_dma_close, 273 + .hw_params = acp_dma_hw_params, 274 + .pointer = acp_dma_pointer, 275 + .mmap = acp_dma_mmap, 276 + .pcm_construct = acp_dma_new, 277 + .legacy_dai_naming = 1, 277 278 }; 278 279 279 280 int acp_platform_register(struct device *dev)
+2 -1
sound/soc/amd/raven/acp3x-i2s.c
··· 257 257 }; 258 258 259 259 static const struct snd_soc_component_driver acp3x_dai_component = { 260 - .name = DRV_NAME, 260 + .name = DRV_NAME, 261 + .legacy_dai_naming = 1, 261 262 }; 262 263 263 264 static struct snd_soc_dai_driver acp3x_i2s_dai = {
+7 -6
sound/soc/amd/renoir/acp3x-pdm-dma.c
··· 363 363 }; 364 364 365 365 static const struct snd_soc_component_driver acp_pdm_component = { 366 - .name = DRV_NAME, 367 - .open = acp_pdm_dma_open, 368 - .close = acp_pdm_dma_close, 369 - .hw_params = acp_pdm_dma_hw_params, 370 - .pointer = acp_pdm_dma_pointer, 371 - .pcm_construct = acp_pdm_dma_new, 366 + .name = DRV_NAME, 367 + .open = acp_pdm_dma_open, 368 + .close = acp_pdm_dma_close, 369 + .hw_params = acp_pdm_dma_hw_params, 370 + .pointer = acp_pdm_dma_pointer, 371 + .pcm_construct = acp_pdm_dma_new, 372 + .legacy_dai_naming = 1, 372 373 }; 373 374 374 375 static int acp_pdm_audio_probe(struct platform_device *pdev)
+1
sound/soc/amd/vangogh/acp5x-i2s.c
··· 345 345 346 346 static const struct snd_soc_component_driver acp5x_dai_component = { 347 347 .name = "acp5x-i2s", 348 + .legacy_dai_naming = 1, 348 349 }; 349 350 350 351 static struct snd_soc_dai_driver acp5x_i2s_dai = {
+7 -6
sound/soc/amd/yc/acp6x-pdm-dma.c
··· 335 335 }; 336 336 337 337 static const struct snd_soc_component_driver acp6x_pdm_component = { 338 - .name = DRV_NAME, 339 - .open = acp6x_pdm_dma_open, 340 - .close = acp6x_pdm_dma_close, 341 - .hw_params = acp6x_pdm_dma_hw_params, 342 - .pointer = acp6x_pdm_dma_pointer, 343 - .pcm_construct = acp6x_pdm_dma_new, 338 + .name = DRV_NAME, 339 + .open = acp6x_pdm_dma_open, 340 + .close = acp6x_pdm_dma_close, 341 + .hw_params = acp6x_pdm_dma_hw_params, 342 + .pointer = acp6x_pdm_dma_pointer, 343 + .pcm_construct = acp6x_pdm_dma_new, 344 + .legacy_dai_naming = 1, 344 345 }; 345 346 346 347 static int acp6x_pdm_audio_probe(struct platform_device *pdev)
+1
sound/soc/atmel/atmel-classd.c
··· 458 458 .num_controls = ARRAY_SIZE(atmel_classd_snd_controls), 459 459 .idle_bias_on = 1, 460 460 .use_pmdown_time = 1, 461 + .legacy_dai_naming = 1, 461 462 }; 462 463 463 464 /* ASoC sound card */
+2 -1
sound/soc/atmel/atmel-i2s.c
··· 564 564 }; 565 565 566 566 static const struct snd_soc_component_driver atmel_i2s_component = { 567 - .name = "atmel-i2s", 567 + .name = "atmel-i2s", 568 + .legacy_dai_naming = 1, 568 569 }; 569 570 570 571 static int atmel_i2s_sama5d2_mck_init(struct atmel_i2s_dev *dev,
+1
sound/soc/atmel/atmel-pdmic.c
··· 481 481 .num_controls = ARRAY_SIZE(atmel_pdmic_snd_controls), 482 482 .idle_bias_on = 1, 483 483 .use_pmdown_time = 1, 484 + .legacy_dai_naming = 1, 484 485 }; 485 486 486 487 /* ASoC sound card */
+4 -3
sound/soc/atmel/atmel_ssc_dai.c
··· 858 858 }; 859 859 860 860 static const struct snd_soc_component_driver atmel_ssc_component = { 861 - .name = "atmel-ssc", 862 - .suspend = atmel_ssc_suspend, 863 - .resume = atmel_ssc_resume, 861 + .name = "atmel-ssc", 862 + .suspend = atmel_ssc_suspend, 863 + .resume = atmel_ssc_resume, 864 + .legacy_dai_naming = 1, 864 865 }; 865 866 866 867 static int asoc_ssc_init(struct device *dev)
+2 -1
sound/soc/atmel/mchp-i2s-mcc.c
··· 928 928 }; 929 929 930 930 static const struct snd_soc_component_driver mchp_i2s_mcc_component = { 931 - .name = "mchp-i2s-mcc", 931 + .name = "mchp-i2s-mcc", 932 + .legacy_dai_naming = 1, 932 933 }; 933 934 934 935 #ifdef CONFIG_OF
+1
sound/soc/atmel/mchp-pdmc.c
··· 423 423 .num_controls = ARRAY_SIZE(mchp_pdmc_snd_controls), 424 424 .open = &mchp_pdmc_open, 425 425 .close = &mchp_pdmc_close, 426 + .legacy_dai_naming = 1, 426 427 }; 427 428 428 429 static const unsigned int mchp_pdmc_1mic[] = {1};
+2 -1
sound/soc/atmel/mchp-spdifrx.c
··· 846 846 }; 847 847 848 848 static const struct snd_soc_component_driver mchp_spdifrx_component = { 849 - .name = "mchp-spdifrx", 849 + .name = "mchp-spdifrx", 850 + .legacy_dai_naming = 1, 850 851 }; 851 852 852 853 static const struct of_device_id mchp_spdifrx_dt_ids[] = {
+2 -1
sound/soc/atmel/mchp-spdiftx.c
··· 753 753 }; 754 754 755 755 static const struct snd_soc_component_driver mchp_spdiftx_component = { 756 - .name = "mchp-spdiftx", 756 + .name = "mchp-spdiftx", 757 + .legacy_dai_naming = 1, 757 758 }; 758 759 759 760 static const struct of_device_id mchp_spdiftx_dt_ids[] = {
+2 -1
sound/soc/au1x/ac97c.c
··· 223 223 }; 224 224 225 225 static const struct snd_soc_component_driver au1xac97c_component = { 226 - .name = "au1xac97c", 226 + .name = "au1xac97c", 227 + .legacy_dai_naming = 1, 227 228 }; 228 229 229 230 static int au1xac97c_drvprobe(struct platform_device *pdev)
+2 -1
sound/soc/au1x/i2sc.c
··· 227 227 }; 228 228 229 229 static const struct snd_soc_component_driver au1xi2s_component = { 230 - .name = "au1xi2s", 230 + .name = "au1xi2s", 231 + .legacy_dai_naming = 1, 231 232 }; 232 233 233 234 static int au1xi2s_drvprobe(struct platform_device *pdev)
+2 -1
sound/soc/au1x/psc-ac97.c
··· 356 356 }; 357 357 358 358 static const struct snd_soc_component_driver au1xpsc_ac97_component = { 359 - .name = "au1xpsc-ac97", 359 + .name = "au1xpsc-ac97", 360 + .legacy_dai_naming = 1, 360 361 }; 361 362 362 363 static int au1xpsc_ac97_drvprobe(struct platform_device *pdev)
+2 -1
sound/soc/au1x/psc-i2s.c
··· 286 286 }; 287 287 288 288 static const struct snd_soc_component_driver au1xpsc_i2s_component = { 289 - .name = "au1xpsc-i2s", 289 + .name = "au1xpsc-i2s", 290 + .legacy_dai_naming = 1, 290 291 }; 291 292 292 293 static int au1xpsc_i2s_drvprobe(struct platform_device *pdev)
+2 -1
sound/soc/bcm/bcm2835-i2s.c
··· 821 821 }; 822 822 823 823 static const struct snd_soc_component_driver bcm2835_i2s_component = { 824 - .name = "bcm2835-i2s-comp", 824 + .name = "bcm2835-i2s-comp", 825 + .legacy_dai_naming = 1, 825 826 }; 826 827 827 828 static int bcm2835_i2s_probe(struct platform_device *pdev)
+1
sound/soc/bcm/bcm63xx-i2s-whistler.c
··· 218 218 219 219 static const struct snd_soc_component_driver bcm63xx_i2s_component = { 220 220 .name = "bcm63xx", 221 + .legacy_dai_naming = 1, 221 222 }; 222 223 223 224 static int bcm63xx_i2s_dev_probe(struct platform_device *pdev)
+4 -3
sound/soc/bcm/cygnus-ssp.c
··· 1201 1201 static struct snd_soc_dai_driver cygnus_ssp_dai[CYGNUS_MAX_PORTS]; 1202 1202 1203 1203 static const struct snd_soc_component_driver cygnus_ssp_component = { 1204 - .name = "cygnus-audio", 1205 - .suspend = cygnus_ssp_suspend, 1206 - .resume = cygnus_ssp_resume, 1204 + .name = "cygnus-audio", 1205 + .suspend = cygnus_ssp_suspend, 1206 + .resume = cygnus_ssp_resume, 1207 + .legacy_dai_naming = 1, 1207 1208 }; 1208 1209 1209 1210 /*
+2 -1
sound/soc/cirrus/ep93xx-ac97.c
··· 355 355 }; 356 356 357 357 static const struct snd_soc_component_driver ep93xx_ac97_component = { 358 - .name = "ep93xx-ac97", 358 + .name = "ep93xx-ac97", 359 + .legacy_dai_naming = 1, 359 360 }; 360 361 361 362 static int ep93xx_ac97_probe(struct platform_device *pdev)
+4 -3
sound/soc/cirrus/ep93xx-i2s.c
··· 422 422 }; 423 423 424 424 static const struct snd_soc_component_driver ep93xx_i2s_component = { 425 - .name = "ep93xx-i2s", 426 - .suspend = ep93xx_i2s_suspend, 427 - .resume = ep93xx_i2s_resume, 425 + .name = "ep93xx-i2s", 426 + .suspend = ep93xx_i2s_suspend, 427 + .resume = ep93xx_i2s_resume, 428 + .legacy_dai_naming = 1, 428 429 }; 429 430 430 431 static int ep93xx_i2s_probe(struct platform_device *pdev)
-1
sound/soc/codecs/88pm860x-codec.c
··· 1345 1345 .idle_bias_on = 1, 1346 1346 .use_pmdown_time = 1, 1347 1347 .endianness = 1, 1348 - .non_legacy_dai_naming = 1, 1349 1348 }; 1350 1349 1351 1350 static int pm860x_codec_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ab8500-codec.c
··· 2523 2523 .idle_bias_on = 1, 2524 2524 .use_pmdown_time = 1, 2525 2525 .endianness = 1, 2526 - .non_legacy_dai_naming = 1, 2527 2526 }; 2528 2527 2529 2528 static int ab8500_codec_driver_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ac97.c
··· 119 119 .idle_bias_on = 1, 120 120 .use_pmdown_time = 1, 121 121 .endianness = 1, 122 - .non_legacy_dai_naming = 1, 123 122 }; 124 123 125 124 static int ac97_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ad1836.c
··· 332 332 .idle_bias_on = 1, 333 333 .use_pmdown_time = 1, 334 334 .endianness = 1, 335 - .non_legacy_dai_naming = 1, 336 335 }; 337 336 338 337 static const struct reg_default ad1836_reg_defaults[] = {
-1
sound/soc/codecs/ad193x.c
··· 523 523 .idle_bias_on = 1, 524 524 .use_pmdown_time = 1, 525 525 .endianness = 1, 526 - .non_legacy_dai_naming = 1, 527 526 }; 528 527 529 528 const struct regmap_config ad193x_regmap_config = {
-1
sound/soc/codecs/ad1980.c
··· 302 302 .idle_bias_on = 1, 303 303 .use_pmdown_time = 1, 304 304 .endianness = 1, 305 - .non_legacy_dai_naming = 1, 306 305 }; 307 306 308 307 static int ad1980_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ad73311.c
··· 58 58 .idle_bias_on = 1, 59 59 .use_pmdown_time = 1, 60 60 .endianness = 1, 61 - .non_legacy_dai_naming = 1, 62 61 }; 63 62 64 63 static int ad73311_probe(struct platform_device *pdev)
-1
sound/soc/codecs/adau1373.c
··· 1470 1470 .num_dapm_routes = ARRAY_SIZE(adau1373_dapm_routes), 1471 1471 .use_pmdown_time = 1, 1472 1472 .endianness = 1, 1473 - .non_legacy_dai_naming = 1, 1474 1473 }; 1475 1474 1476 1475 static int adau1373_i2c_probe(struct i2c_client *client)
-1
sound/soc/codecs/adau1701.c
··· 772 772 .set_sysclk = adau1701_set_sysclk, 773 773 .use_pmdown_time = 1, 774 774 .endianness = 1, 775 - .non_legacy_dai_naming = 1, 776 775 }; 777 776 778 777 static const struct regmap_config adau1701_regmap = {
-1
sound/soc/codecs/adau1761.c
··· 930 930 .idle_bias_on = 1, 931 931 .use_pmdown_time = 1, 932 932 .endianness = 1, 933 - .non_legacy_dai_naming = 1, 934 933 }; 935 934 936 935 #define ADAU1761_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE | \
-1
sound/soc/codecs/adau1781.c
··· 439 439 .idle_bias_on = 1, 440 440 .use_pmdown_time = 1, 441 441 .endianness = 1, 442 - .non_legacy_dai_naming = 1, 443 442 }; 444 443 445 444 #define ADAU1781_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE | \
-1
sound/soc/codecs/adau1977.c
··· 876 876 .num_dapm_routes = ARRAY_SIZE(adau1977_dapm_routes), 877 877 .use_pmdown_time = 1, 878 878 .endianness = 1, 879 - .non_legacy_dai_naming = 1, 880 879 }; 881 880 882 881 static int adau1977_setup_micbias(struct adau1977 *adau1977)
-1
sound/soc/codecs/adau7002.c
··· 91 91 .idle_bias_on = 1, 92 92 .use_pmdown_time = 1, 93 93 .endianness = 1, 94 - .non_legacy_dai_naming = 1, 95 94 }; 96 95 97 96 static int adau7002_probe(struct platform_device *pdev)
-1
sound/soc/codecs/adau7118.c
··· 442 442 .num_dapm_widgets = ARRAY_SIZE(adau7118_widgets), 443 443 .use_pmdown_time = 1, 444 444 .endianness = 1, 445 - .non_legacy_dai_naming = 1, 446 445 }; 447 446 448 447 static void adau7118_regulator_disable(void *data)
-1
sound/soc/codecs/adav80x.c
··· 842 842 .idle_bias_on = 1, 843 843 .use_pmdown_time = 1, 844 844 .endianness = 1, 845 - .non_legacy_dai_naming = 1, 846 845 }; 847 846 848 847 int adav80x_bus_probe(struct device *dev, struct regmap *regmap)
-1
sound/soc/codecs/ads117x.c
··· 62 62 .idle_bias_on = 1, 63 63 .use_pmdown_time = 1, 64 64 .endianness = 1, 65 - .non_legacy_dai_naming = 1, 66 65 }; 67 66 68 67 static int ads117x_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ak4104.c
··· 248 248 .idle_bias_on = 1, 249 249 .use_pmdown_time = 1, 250 250 .endianness = 1, 251 - .non_legacy_dai_naming = 1, 252 251 }; 253 252 254 253 static const struct regmap_config ak4104_regmap = {
-1
sound/soc/codecs/ak4118.c
··· 342 342 .idle_bias_on = 1, 343 343 .use_pmdown_time = 1, 344 344 .endianness = 1, 345 - .non_legacy_dai_naming = 1, 346 345 }; 347 346 348 347 static const struct regmap_config ak4118_regmap = {
-1
sound/soc/codecs/ak4375.c
··· 473 473 .idle_bias_on = 1, 474 474 .use_pmdown_time = 1, 475 475 .endianness = 1, 476 - .non_legacy_dai_naming = 1, 477 476 }; 478 477 479 478 static const struct regmap_config ak4375_regmap = {
-2
sound/soc/codecs/ak4458.c
··· 725 725 .idle_bias_on = 1, 726 726 .use_pmdown_time = 1, 727 727 .endianness = 1, 728 - .non_legacy_dai_naming = 1, 729 728 }; 730 729 731 730 static const struct snd_soc_component_driver soc_codec_dev_ak4497 = { ··· 739 740 .idle_bias_on = 1, 740 741 .use_pmdown_time = 1, 741 742 .endianness = 1, 742 - .non_legacy_dai_naming = 1, 743 743 }; 744 744 745 745 static const struct regmap_config ak4458_regmap = {
-1
sound/soc/codecs/ak4535.c
··· 402 402 .idle_bias_on = 1, 403 403 .use_pmdown_time = 1, 404 404 .endianness = 1, 405 - .non_legacy_dai_naming = 1, 406 405 }; 407 406 408 407 static int ak4535_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/ak4554.c
··· 67 67 .idle_bias_on = 1, 68 68 .use_pmdown_time = 1, 69 69 .endianness = 1, 70 - .non_legacy_dai_naming = 1, 71 70 }; 72 71 73 72 static int ak4554_soc_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ak4613.c
··· 827 827 .num_dapm_routes = ARRAY_SIZE(ak4613_intercon), 828 828 .idle_bias_on = 1, 829 829 .endianness = 1, 830 - .non_legacy_dai_naming = 1, 831 830 }; 832 831 833 832 static void ak4613_parse_of(struct ak4613_priv *priv,
-1
sound/soc/codecs/ak4641.c
··· 535 535 .idle_bias_on = 1, 536 536 .use_pmdown_time = 1, 537 537 .endianness = 1, 538 - .non_legacy_dai_naming = 1, 539 538 }; 540 539 541 540 static const struct regmap_config ak4641_regmap = {
-1
sound/soc/codecs/ak4642.c
··· 559 559 .num_dapm_routes = ARRAY_SIZE(ak4642_intercon), 560 560 .idle_bias_on = 1, 561 561 .endianness = 1, 562 - .non_legacy_dai_naming = 1, 563 562 }; 564 563 565 564 static const struct regmap_config ak4642_regmap = {
-1
sound/soc/codecs/ak4671.c
··· 616 616 .idle_bias_on = 1, 617 617 .use_pmdown_time = 1, 618 618 .endianness = 1, 619 - .non_legacy_dai_naming = 1, 620 619 }; 621 620 622 621 static const struct regmap_config ak4671_regmap = {
-1
sound/soc/codecs/ak5386.c
··· 77 77 .idle_bias_on = 1, 78 78 .use_pmdown_time = 1, 79 79 .endianness = 1, 80 - .non_legacy_dai_naming = 1, 81 80 }; 82 81 83 82 static int ak5386_set_dai_fmt(struct snd_soc_dai *codec_dai,
-2
sound/soc/codecs/ak5558.c
··· 393 393 .idle_bias_on = 1, 394 394 .use_pmdown_time = 1, 395 395 .endianness = 1, 396 - .non_legacy_dai_naming = 1, 397 396 }; 398 397 399 398 static const struct snd_soc_component_driver soc_codec_dev_ak5552 = { ··· 407 408 .idle_bias_on = 1, 408 409 .use_pmdown_time = 1, 409 410 .endianness = 1, 410 - .non_legacy_dai_naming = 1, 411 411 }; 412 412 413 413 static const struct regmap_config ak5558_regmap = {
-1
sound/soc/codecs/alc5623.c
··· 956 956 .idle_bias_on = 1, 957 957 .use_pmdown_time = 1, 958 958 .endianness = 1, 959 - .non_legacy_dai_naming = 1, 960 959 }; 961 960 962 961 static const struct regmap_config alc5623_regmap = {
-1
sound/soc/codecs/alc5632.c
··· 1078 1078 .idle_bias_on = 1, 1079 1079 .use_pmdown_time = 1, 1080 1080 .endianness = 1, 1081 - .non_legacy_dai_naming = 1, 1082 1081 }; 1083 1082 1084 1083 static const struct regmap_config alc5632_regmap = {
-1
sound/soc/codecs/bd28623.c
··· 161 161 .idle_bias_on = 1, 162 162 .use_pmdown_time = 1, 163 163 .endianness = 1, 164 - .non_legacy_dai_naming = 1, 165 164 }; 166 165 167 166 static struct snd_soc_dai_driver soc_dai_bd = {
-1
sound/soc/codecs/bt-sco.c
··· 69 69 .idle_bias_on = 1, 70 70 .use_pmdown_time = 1, 71 71 .endianness = 1, 72 - .non_legacy_dai_naming = 1, 73 72 }; 74 73 75 74 static int bt_sco_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cpcap.c
··· 1660 1660 .idle_bias_on = 1, 1661 1661 .use_pmdown_time = 1, 1662 1662 .endianness = 1, 1663 - .non_legacy_dai_naming = 1, 1664 1663 }; 1665 1664 1666 1665 static int cpcap_codec_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cq93vc.c
··· 126 126 .idle_bias_on = 1, 127 127 .use_pmdown_time = 1, 128 128 .endianness = 1, 129 - .non_legacy_dai_naming = 1, 130 129 }; 131 130 132 131 static int cq93vc_platform_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs35l32.c
··· 236 236 .idle_bias_on = 1, 237 237 .use_pmdown_time = 1, 238 238 .endianness = 1, 239 - .non_legacy_dai_naming = 1, 240 239 }; 241 240 242 241 /* Current and threshold powerup sequence Pg37 in datasheet */
-1
sound/soc/codecs/cs35l33.c
··· 840 840 .num_dapm_routes = ARRAY_SIZE(cs35l33_audio_map), 841 841 .use_pmdown_time = 1, 842 842 .endianness = 1, 843 - .non_legacy_dai_naming = 1, 844 843 }; 845 844 846 845 static const struct regmap_config cs35l33_regmap = {
-1
sound/soc/codecs/cs35l34.c
··· 787 787 .idle_bias_on = 1, 788 788 .use_pmdown_time = 1, 789 789 .endianness = 1, 790 - .non_legacy_dai_naming = 1, 791 790 }; 792 791 793 792 static struct regmap_config cs35l34_regmap = {
-1
sound/soc/codecs/cs35l35.c
··· 1087 1087 .idle_bias_on = 1, 1088 1088 .use_pmdown_time = 1, 1089 1089 .endianness = 1, 1090 - .non_legacy_dai_naming = 1, 1091 1090 }; 1092 1091 1093 1092 static struct regmap_config cs35l35_regmap = {
-1
sound/soc/codecs/cs35l36.c
··· 1300 1300 .idle_bias_on = 1, 1301 1301 .use_pmdown_time = 1, 1302 1302 .endianness = 1, 1303 - .non_legacy_dai_naming = 1, 1304 1303 }; 1305 1304 1306 1305 static struct regmap_config cs35l36_regmap = {
-1
sound/soc/codecs/cs4234.c
··· 660 660 .controls = cs4234_snd_controls, 661 661 .num_controls = ARRAY_SIZE(cs4234_snd_controls), 662 662 .set_bias_level = cs4234_set_bias_level, 663 - .non_legacy_dai_naming = 1, 664 663 .idle_bias_on = 1, 665 664 .suspend_bias_off = 1, 666 665 .endianness = 1,
-1
sound/soc/codecs/cs4265.c
··· 553 553 .idle_bias_on = 1, 554 554 .use_pmdown_time = 1, 555 555 .endianness = 1, 556 - .non_legacy_dai_naming = 1, 557 556 }; 558 557 559 558 static const struct regmap_config cs4265_regmap = {
-1
sound/soc/codecs/cs4270.c
··· 619 619 .idle_bias_on = 1, 620 620 .use_pmdown_time = 1, 621 621 .endianness = 1, 622 - .non_legacy_dai_naming = 1, 623 622 }; 624 623 625 624 /*
-1
sound/soc/codecs/cs4271.c
··· 642 642 .idle_bias_on = 1, 643 643 .use_pmdown_time = 1, 644 644 .endianness = 1, 645 - .non_legacy_dai_naming = 1, 646 645 }; 647 646 648 647 static int cs4271_common_probe(struct device *dev,
-1
sound/soc/codecs/cs42l42.c
··· 581 581 .num_controls = ARRAY_SIZE(cs42l42_snd_controls), 582 582 .idle_bias_on = 1, 583 583 .endianness = 1, 584 - .non_legacy_dai_naming = 1, 585 584 }; 586 585 587 586 /* Switch to SCLK. Atomic delay after the write to allow the switch to complete. */
-1
sound/soc/codecs/cs42l51.c
··· 600 600 .idle_bias_on = 1, 601 601 .use_pmdown_time = 1, 602 602 .endianness = 1, 603 - .non_legacy_dai_naming = 1, 604 603 }; 605 604 606 605 static bool cs42l51_writeable_reg(struct device *dev, unsigned int reg)
-1
sound/soc/codecs/cs42l52.c
··· 1061 1061 .idle_bias_on = 1, 1062 1062 .use_pmdown_time = 1, 1063 1063 .endianness = 1, 1064 - .non_legacy_dai_naming = 1, 1065 1064 }; 1066 1065 1067 1066 /* Current and threshold powerup sequence Pg37 */
-1
sound/soc/codecs/cs42l56.c
··· 1114 1114 .idle_bias_on = 1, 1115 1115 .use_pmdown_time = 1, 1116 1116 .endianness = 1, 1117 - .non_legacy_dai_naming = 1, 1118 1117 }; 1119 1118 1120 1119 static const struct regmap_config cs42l56_regmap = {
-1
sound/soc/codecs/cs42l73.c
··· 1256 1256 .idle_bias_on = 1, 1257 1257 .use_pmdown_time = 1, 1258 1258 .endianness = 1, 1259 - .non_legacy_dai_naming = 1, 1260 1259 }; 1261 1260 1262 1261 static const struct regmap_config cs42l73_regmap = {
-1
sound/soc/codecs/cs42xx8.c
··· 497 497 .num_dapm_routes = ARRAY_SIZE(cs42xx8_dapm_routes), 498 498 .use_pmdown_time = 1, 499 499 .endianness = 1, 500 - .non_legacy_dai_naming = 1, 501 500 }; 502 501 503 502 const struct cs42xx8_driver_data cs42448_data = {
-1
sound/soc/codecs/cs43130.c
··· 2345 2345 .idle_bias_on = 1, 2346 2346 .use_pmdown_time = 1, 2347 2347 .endianness = 1, 2348 - .non_legacy_dai_naming = 1, 2349 2348 }; 2350 2349 2351 2350 static const struct regmap_config cs43130_regmap = {
-1
sound/soc/codecs/cs4341.c
··· 202 202 .idle_bias_on = 1, 203 203 .use_pmdown_time = 1, 204 204 .endianness = 1, 205 - .non_legacy_dai_naming = 1, 206 205 }; 207 206 208 207 static const struct of_device_id __maybe_unused cs4341_dt_ids[] = {
-1
sound/soc/codecs/cs4349.c
··· 260 260 .idle_bias_on = 1, 261 261 .use_pmdown_time = 1, 262 262 .endianness = 1, 263 - .non_legacy_dai_naming = 1, 264 263 }; 265 264 266 265 static const struct regmap_config cs4349_regmap = {
-1
sound/soc/codecs/cs47l15.c
··· 1356 1356 .num_dapm_routes = ARRAY_SIZE(cs47l15_dapm_routes), 1357 1357 .use_pmdown_time = 1, 1358 1358 .endianness = 1, 1359 - .non_legacy_dai_naming = 1, 1360 1359 }; 1361 1360 1362 1361 static int cs47l15_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs47l24.c
··· 1203 1203 .num_dapm_routes = ARRAY_SIZE(cs47l24_dapm_routes), 1204 1204 .use_pmdown_time = 1, 1205 1205 .endianness = 1, 1206 - .non_legacy_dai_naming = 1, 1207 1206 }; 1208 1207 1209 1208 static int cs47l24_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs47l35.c
··· 1638 1638 .num_dapm_routes = ARRAY_SIZE(cs47l35_dapm_routes), 1639 1639 .use_pmdown_time = 1, 1640 1640 .endianness = 1, 1641 - .non_legacy_dai_naming = 1, 1642 1641 }; 1643 1642 1644 1643 static int cs47l35_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs47l85.c
··· 2582 2582 .num_dapm_routes = ARRAY_SIZE(cs47l85_dapm_routes), 2583 2583 .use_pmdown_time = 1, 2584 2584 .endianness = 1, 2585 - .non_legacy_dai_naming = 1, 2586 2585 }; 2587 2586 2588 2587 static int cs47l85_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs47l90.c
··· 2497 2497 .num_dapm_routes = ARRAY_SIZE(cs47l90_dapm_routes), 2498 2498 .use_pmdown_time = 1, 2499 2499 .endianness = 1, 2500 - .non_legacy_dai_naming = 1, 2501 2500 }; 2502 2501 2503 2502 static int cs47l90_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs47l92.c
··· 1958 1958 .num_dapm_routes = ARRAY_SIZE(cs47l92_dapm_routes), 1959 1959 .use_pmdown_time = 1, 1960 1960 .endianness = 1, 1961 - .non_legacy_dai_naming = 1, 1962 1961 }; 1963 1962 1964 1963 static int cs47l92_probe(struct platform_device *pdev)
-1
sound/soc/codecs/cs53l30.c
··· 899 899 .num_dapm_routes = ARRAY_SIZE(cs53l30_dapm_routes), 900 900 .use_pmdown_time = 1, 901 901 .endianness = 1, 902 - .non_legacy_dai_naming = 1, 903 902 }; 904 903 905 904 static struct regmap_config cs53l30_regmap = {
-1
sound/soc/codecs/cx20442.c
··· 411 411 .idle_bias_on = 1, 412 412 .use_pmdown_time = 1, 413 413 .endianness = 1, 414 - .non_legacy_dai_naming = 1, 415 414 }; 416 415 417 416 static int cx20442_platform_probe(struct platform_device *pdev)
-1
sound/soc/codecs/da7210.c
··· 1173 1173 .idle_bias_on = 1, 1174 1174 .use_pmdown_time = 1, 1175 1175 .endianness = 1, 1176 - .non_legacy_dai_naming = 1, 1177 1176 }; 1178 1177 1179 1178 #if IS_ENABLED(CONFIG_I2C)
-1
sound/soc/codecs/da7213.c
··· 1922 1922 .idle_bias_on = 1, 1923 1923 .use_pmdown_time = 1, 1924 1924 .endianness = 1, 1925 - .non_legacy_dai_naming = 1, 1926 1925 }; 1927 1926 1928 1927 static const struct regmap_config da7213_regmap_config = {
-1
sound/soc/codecs/da7218.c
··· 3040 3040 .idle_bias_on = 1, 3041 3041 .use_pmdown_time = 1, 3042 3042 .endianness = 1, 3043 - .non_legacy_dai_naming = 1, 3044 3043 }; 3045 3044 3046 3045
-1
sound/soc/codecs/da7219.c
··· 2647 2647 .idle_bias_on = 1, 2648 2648 .use_pmdown_time = 1, 2649 2649 .endianness = 1, 2650 - .non_legacy_dai_naming = 1, 2651 2650 }; 2652 2651 2653 2652
-1
sound/soc/codecs/da732x.c
··· 1503 1503 .idle_bias_on = 1, 1504 1504 .use_pmdown_time = 1, 1505 1505 .endianness = 1, 1506 - .non_legacy_dai_naming = 1, 1507 1506 }; 1508 1507 1509 1508 static int da732x_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/da9055.c
··· 1460 1460 .idle_bias_on = 1, 1461 1461 .use_pmdown_time = 1, 1462 1462 .endianness = 1, 1463 - .non_legacy_dai_naming = 1, 1464 1463 }; 1465 1464 1466 1465 static const struct regmap_config da9055_regmap_config = {
-1
sound/soc/codecs/dmic.c
··· 140 140 .idle_bias_on = 1, 141 141 .use_pmdown_time = 1, 142 142 .endianness = 1, 143 - .non_legacy_dai_naming = 1, 144 143 }; 145 144 146 145 static int dmic_dev_probe(struct platform_device *pdev)
-1
sound/soc/codecs/es7134.c
··· 213 213 .idle_bias_on = 1, 214 214 .use_pmdown_time = 1, 215 215 .endianness = 1, 216 - .non_legacy_dai_naming = 1, 217 216 }; 218 217 219 218 static struct snd_soc_dai_driver es7154_dai = {
-1
sound/soc/codecs/es7241.c
··· 232 232 .num_dapm_routes = ARRAY_SIZE(es7241_dapm_routes), 233 233 .idle_bias_on = 1, 234 234 .endianness = 1, 235 - .non_legacy_dai_naming = 1, 236 235 }; 237 236 238 237 static void es7241_parse_fmt(struct device *dev, struct es7241_data *priv)
-1
sound/soc/codecs/es8316.c
··· 769 769 .num_dapm_routes = ARRAY_SIZE(es8316_dapm_routes), 770 770 .use_pmdown_time = 1, 771 771 .endianness = 1, 772 - .non_legacy_dai_naming = 1, 773 772 }; 774 773 775 774 static const struct regmap_range es8316_volatile_ranges[] = {
-1
sound/soc/codecs/es8328.c
··· 844 844 .idle_bias_on = 1, 845 845 .use_pmdown_time = 1, 846 846 .endianness = 1, 847 - .non_legacy_dai_naming = 1, 848 847 }; 849 848 850 849 int es8328_probe(struct device *dev, struct regmap *regmap)
-1
sound/soc/codecs/gtm601.c
··· 73 73 .idle_bias_on = 1, 74 74 .use_pmdown_time = 1, 75 75 .endianness = 1, 76 - .non_legacy_dai_naming = 1, 77 76 }; 78 77 79 78 static int gtm601_platform_probe(struct platform_device *pdev)
-1
sound/soc/codecs/hdac_hdmi.c
··· 2058 2058 .remove = hdmi_codec_remove, 2059 2059 .use_pmdown_time = 1, 2060 2060 .endianness = 1, 2061 - .non_legacy_dai_naming = 1, 2062 2061 }; 2063 2062 2064 2063 static void hdac_hdmi_get_chmap(struct hdac_device *hdev, int pcm_idx,
-1
sound/soc/codecs/hdmi-codec.c
··· 977 977 .idle_bias_on = 1, 978 978 .use_pmdown_time = 1, 979 979 .endianness = 1, 980 - .non_legacy_dai_naming = 1, 981 980 .set_jack = hdmi_codec_set_jack, 982 981 }; 983 982
-1
sound/soc/codecs/ics43432.c
··· 41 41 .idle_bias_on = 1, 42 42 .use_pmdown_time = 1, 43 43 .endianness = 1, 44 - .non_legacy_dai_naming = 1, 45 44 }; 46 45 47 46 static int ics43432_probe(struct platform_device *pdev)
-1
sound/soc/codecs/inno_rk3036.c
··· 387 387 .idle_bias_on = 1, 388 388 .use_pmdown_time = 1, 389 389 .endianness = 1, 390 - .non_legacy_dai_naming = 1, 391 390 }; 392 391 393 392 static const struct regmap_config rk3036_codec_regmap_config = {
-1
sound/soc/codecs/isabelle.c
··· 1095 1095 .num_dapm_routes = ARRAY_SIZE(isabelle_intercon), 1096 1096 .use_pmdown_time = 1, 1097 1097 .endianness = 1, 1098 - .non_legacy_dai_naming = 1, 1099 1098 }; 1100 1099 1101 1100 static const struct regmap_config isabelle_regmap_config = {
-2
sound/soc/codecs/jz4740.c
··· 291 291 .idle_bias_on = 1, 292 292 .use_pmdown_time = 1, 293 293 .endianness = 1, 294 - .non_legacy_dai_naming = 1, 295 - 296 294 }; 297 295 298 296 static const struct regmap_config jz4740_codec_regmap_config = {
-1
sound/soc/codecs/lm49453.c
··· 1399 1399 .num_dapm_routes = ARRAY_SIZE(lm49453_audio_map), 1400 1400 .use_pmdown_time = 1, 1401 1401 .endianness = 1, 1402 - .non_legacy_dai_naming = 1, 1403 1402 }; 1404 1403 1405 1404 static const struct regmap_config lm49453_regmap_config = {
-1
sound/soc/codecs/lochnagar-sc.c
··· 217 217 .dapm_routes = lochnagar_sc_routes, 218 218 .num_dapm_routes = ARRAY_SIZE(lochnagar_sc_routes), 219 219 220 - .non_legacy_dai_naming = 1, 221 220 .endianness = 1, 222 221 }; 223 222
-1
sound/soc/codecs/max98088.c
··· 1734 1734 .idle_bias_on = 1, 1735 1735 .use_pmdown_time = 1, 1736 1736 .endianness = 1, 1737 - .non_legacy_dai_naming = 1, 1738 1737 }; 1739 1738 1740 1739 static const struct i2c_device_id max98088_i2c_id[] = {
-1
sound/soc/codecs/max98090.c
··· 2519 2519 .idle_bias_on = 1, 2520 2520 .use_pmdown_time = 1, 2521 2521 .endianness = 1, 2522 - .non_legacy_dai_naming = 1, 2523 2522 }; 2524 2523 2525 2524 static const struct regmap_config max98090_regmap = {
-1
sound/soc/codecs/max98095.c
··· 2103 2103 .idle_bias_on = 1, 2104 2104 .use_pmdown_time = 1, 2105 2105 .endianness = 1, 2106 - .non_legacy_dai_naming = 1, 2107 2106 }; 2108 2107 2109 2108 static const struct i2c_device_id max98095_i2c_id[] = {
-1
sound/soc/codecs/max98357a.c
··· 93 93 .idle_bias_on = 1, 94 94 .use_pmdown_time = 1, 95 95 .endianness = 1, 96 - .non_legacy_dai_naming = 1, 97 96 }; 98 97 99 98 static const struct snd_soc_dai_ops max98357a_dai_ops = {
-1
sound/soc/codecs/max98371.c
··· 351 351 .idle_bias_on = 1, 352 352 .use_pmdown_time = 1, 353 353 .endianness = 1, 354 - .non_legacy_dai_naming = 1, 355 354 }; 356 355 357 356 static const struct regmap_config max98371_regmap = {
-2
sound/soc/codecs/max98373.c
··· 437 437 .num_dapm_routes = ARRAY_SIZE(max98373_audio_map), 438 438 .use_pmdown_time = 1, 439 439 .endianness = 1, 440 - .non_legacy_dai_naming = 1, 441 440 }; 442 441 EXPORT_SYMBOL_GPL(soc_codec_dev_max98373); 443 442 ··· 461 462 .num_dapm_routes = ARRAY_SIZE(max98373_audio_map), 462 463 .use_pmdown_time = 1, 463 464 .endianness = 1, 464 - .non_legacy_dai_naming = 1, 465 465 }; 466 466 EXPORT_SYMBOL_GPL(soc_codec_dev_max98373_sdw); 467 467
-1
sound/soc/codecs/max98390.c
··· 983 983 .idle_bias_on = 1, 984 984 .use_pmdown_time = 1, 985 985 .endianness = 1, 986 - .non_legacy_dai_naming = 1, 987 986 }; 988 987 989 988 static const struct regmap_config max98390_regmap = {
-2
sound/soc/codecs/max98396.c
··· 1553 1553 .idle_bias_on = 1, 1554 1554 .use_pmdown_time = 1, 1555 1555 .endianness = 1, 1556 - .non_legacy_dai_naming = 1, 1557 1556 }; 1558 1557 1559 1558 static const struct snd_soc_component_driver soc_codec_dev_max98397 = { ··· 1566 1567 .idle_bias_on = 1, 1567 1568 .use_pmdown_time = 1, 1568 1569 .endianness = 1, 1569 - .non_legacy_dai_naming = 1, 1570 1570 }; 1571 1571 1572 1572 static const struct regmap_config max98396_regmap = {
-1
sound/soc/codecs/max9850.c
··· 296 296 .idle_bias_on = 1, 297 297 .use_pmdown_time = 1, 298 298 .endianness = 1, 299 - .non_legacy_dai_naming = 1, 300 299 }; 301 300 302 301 static int max9850_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/max98520.c
··· 657 657 .idle_bias_on = 1, 658 658 .use_pmdown_time = 1, 659 659 .endianness = 1, 660 - .non_legacy_dai_naming = 1, 661 660 }; 662 661 663 662 static const struct regmap_config max98520_regmap = {
-1
sound/soc/codecs/max9860.c
··· 537 537 .num_dapm_routes = ARRAY_SIZE(max9860_dapm_routes), 538 538 .use_pmdown_time = 1, 539 539 .endianness = 1, 540 - .non_legacy_dai_naming = 1, 541 540 }; 542 541 543 542 #ifdef CONFIG_PM
-1
sound/soc/codecs/max9867.c
··· 589 589 .idle_bias_on = 1, 590 590 .use_pmdown_time = 1, 591 591 .endianness = 1, 592 - .non_legacy_dai_naming = 1, 593 592 }; 594 593 595 594 static bool max9867_volatile_register(struct device *dev, unsigned int reg)
-1
sound/soc/codecs/max98925.c
··· 544 544 .idle_bias_on = 1, 545 545 .use_pmdown_time = 1, 546 546 .endianness = 1, 547 - .non_legacy_dai_naming = 1, 548 547 }; 549 548 550 549 static const struct regmap_config max98925_regmap = {
-1
sound/soc/codecs/max98926.c
··· 496 496 .idle_bias_on = 1, 497 497 .use_pmdown_time = 1, 498 498 .endianness = 1, 499 - .non_legacy_dai_naming = 1, 500 499 }; 501 500 502 501 static const struct regmap_config max98926_regmap = {
-1
sound/soc/codecs/max98927.c
··· 832 832 .idle_bias_on = 1, 833 833 .use_pmdown_time = 1, 834 834 .endianness = 1, 835 - .non_legacy_dai_naming = 1, 836 835 }; 837 836 838 837 static const struct regmap_config max98927_regmap = {
-1
sound/soc/codecs/mc13783.c
··· 727 727 .idle_bias_on = 1, 728 728 .use_pmdown_time = 1, 729 729 .endianness = 1, 730 - .non_legacy_dai_naming = 1, 731 730 }; 732 731 733 732 static int __init mc13783_codec_probe(struct platform_device *pdev)
-1
sound/soc/codecs/ml26124.c
··· 537 537 .idle_bias_on = 1, 538 538 .use_pmdown_time = 1, 539 539 .endianness = 1, 540 - .non_legacy_dai_naming = 1, 541 540 }; 542 541 543 542 static const struct regmap_config ml26124_i2c_regmap = {
-1
sound/soc/codecs/msm8916-wcd-analog.c
··· 1128 1128 .idle_bias_on = 1, 1129 1129 .use_pmdown_time = 1, 1130 1130 .endianness = 1, 1131 - .non_legacy_dai_naming = 1, 1132 1131 }; 1133 1132 1134 1133 static int pm8916_wcd_analog_parse_dt(struct device *dev,
-1
sound/soc/codecs/msm8916-wcd-digital.c
··· 1155 1155 .idle_bias_on = 1, 1156 1156 .use_pmdown_time = 1, 1157 1157 .endianness = 1, 1158 - .non_legacy_dai_naming = 1, 1159 1158 }; 1160 1159 1161 1160 static const struct regmap_config msm8916_codec_regmap_config = {
-1
sound/soc/codecs/nau8315.c
··· 93 93 .idle_bias_on = 1, 94 94 .use_pmdown_time = 1, 95 95 .endianness = 1, 96 - .non_legacy_dai_naming = 1, 97 96 }; 98 97 99 98 static const struct snd_soc_dai_ops nau8315_dai_ops = {
-1
sound/soc/codecs/nau8540.c
··· 806 806 .idle_bias_on = 1, 807 807 .use_pmdown_time = 1, 808 808 .endianness = 1, 809 - .non_legacy_dai_naming = 1, 810 809 }; 811 810 812 811 static const struct regmap_config nau8540_regmap_config = {
-1
sound/soc/codecs/nau8810.c
··· 866 866 .idle_bias_on = 1, 867 867 .use_pmdown_time = 1, 868 868 .endianness = 1, 869 - .non_legacy_dai_naming = 1, 870 869 }; 871 870 872 871 static int nau8810_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/nau8821.c
··· 1430 1430 .dapm_routes = nau8821_dapm_routes, 1431 1431 .num_dapm_routes = ARRAY_SIZE(nau8821_dapm_routes), 1432 1432 .suspend_bias_off = 1, 1433 - .non_legacy_dai_naming = 1, 1434 1433 .idle_bias_on = 1, 1435 1434 .use_pmdown_time = 1, 1436 1435 .endianness = 1,
-1
sound/soc/codecs/nau8822.c
··· 1083 1083 .idle_bias_on = 1, 1084 1084 .use_pmdown_time = 1, 1085 1085 .endianness = 1, 1086 - .non_legacy_dai_naming = 1, 1087 1086 }; 1088 1087 1089 1088 static const struct regmap_config nau8822_regmap_config = {
-1
sound/soc/codecs/nau8824.c
··· 1544 1544 .idle_bias_on = 1, 1545 1545 .use_pmdown_time = 1, 1546 1546 .endianness = 1, 1547 - .non_legacy_dai_naming = 1, 1548 1547 }; 1549 1548 1550 1549 static const struct snd_soc_dai_ops nau8824_dai_ops = {
-1
sound/soc/codecs/nau8825.c
··· 2478 2478 .idle_bias_on = 1, 2479 2479 .use_pmdown_time = 1, 2480 2480 .endianness = 1, 2481 - .non_legacy_dai_naming = 1, 2482 2481 }; 2483 2482 2484 2483 static void nau8825_reset_chip(struct regmap *regmap)
-1
sound/soc/codecs/pcm1681.c
··· 290 290 .idle_bias_on = 1, 291 291 .use_pmdown_time = 1, 292 292 .endianness = 1, 293 - .non_legacy_dai_naming = 1, 294 293 }; 295 294 296 295 static const struct i2c_device_id pcm1681_i2c_id[] = {
-1
sound/soc/codecs/pcm1789.c
··· 229 229 .idle_bias_on = 1, 230 230 .use_pmdown_time = 1, 231 231 .endianness = 1, 232 - .non_legacy_dai_naming = 1, 233 232 }; 234 233 235 234 int pcm1789_common_init(struct device *dev, struct regmap *regmap)
-1
sound/soc/codecs/pcm179x.c
··· 207 207 .idle_bias_on = 1, 208 208 .use_pmdown_time = 1, 209 209 .endianness = 1, 210 - .non_legacy_dai_naming = 1, 211 210 }; 212 211 213 212 int pcm179x_common_init(struct device *dev, struct regmap *regmap)
-2
sound/soc/codecs/pcm186x.c
··· 578 578 .idle_bias_on = 1, 579 579 .use_pmdown_time = 1, 580 580 .endianness = 1, 581 - .non_legacy_dai_naming = 1, 582 581 }; 583 582 584 583 static struct snd_soc_component_driver soc_codec_dev_pcm1865 = { ··· 592 593 .idle_bias_on = 1, 593 594 .use_pmdown_time = 1, 594 595 .endianness = 1, 595 - .non_legacy_dai_naming = 1, 596 596 }; 597 597 598 598 static bool pcm186x_volatile(struct device *dev, unsigned int reg)
-1
sound/soc/codecs/pcm3008.c
··· 102 102 .idle_bias_on = 1, 103 103 .use_pmdown_time = 1, 104 104 .endianness = 1, 105 - .non_legacy_dai_naming = 1, 106 105 }; 107 106 108 107 static int pcm3008_codec_probe(struct platform_device *pdev)
-1
sound/soc/codecs/pcm3168a.c
··· 716 716 .num_dapm_routes = ARRAY_SIZE(pcm3168a_dapm_routes), 717 717 .use_pmdown_time = 1, 718 718 .endianness = 1, 719 - .non_legacy_dai_naming = 1, 720 719 }; 721 720 722 721 int pcm3168a_probe(struct device *dev, struct regmap *regmap)
-1
sound/soc/codecs/pcm5102a.c
··· 28 28 .idle_bias_on = 1, 29 29 .use_pmdown_time = 1, 30 30 .endianness = 1, 31 - .non_legacy_dai_naming = 1, 32 31 }; 33 32 34 33 static int pcm5102a_probe(struct platform_device *pdev)
-1
sound/soc/codecs/pcm512x.c
··· 1512 1512 .num_dapm_routes = ARRAY_SIZE(pcm512x_dapm_routes), 1513 1513 .use_pmdown_time = 1, 1514 1514 .endianness = 1, 1515 - .non_legacy_dai_naming = 1, 1516 1515 }; 1517 1516 1518 1517 static const struct regmap_range_cfg pcm512x_range = {
-1
sound/soc/codecs/rk817_codec.c
··· 444 444 .idle_bias_on = 1, 445 445 .use_pmdown_time = 1, 446 446 .endianness = 1, 447 - .non_legacy_dai_naming = 1, 448 447 .controls = rk817_volume_controls, 449 448 .num_controls = ARRAY_SIZE(rk817_volume_controls), 450 449 .dapm_routes = rk817_dapm_routes,
-1
sound/soc/codecs/rt1011.c
··· 2176 2176 .set_pll = rt1011_set_component_pll, 2177 2177 .use_pmdown_time = 1, 2178 2178 .endianness = 1, 2179 - .non_legacy_dai_naming = 1, 2180 2179 }; 2181 2180 2182 2181 static const struct regmap_config rt1011_regmap = {
-1
sound/soc/codecs/rt1015.c
··· 1071 1071 .set_pll = rt1015_set_component_pll, 1072 1072 .use_pmdown_time = 1, 1073 1073 .endianness = 1, 1074 - .non_legacy_dai_naming = 1, 1075 1074 }; 1076 1075 1077 1076 static const struct regmap_config rt1015_regmap = {
-1
sound/soc/codecs/rt1015p.c
··· 89 89 .idle_bias_on = 1, 90 90 .use_pmdown_time = 1, 91 91 .endianness = 1, 92 - .non_legacy_dai_naming = 1, 93 92 }; 94 93 95 94 static struct snd_soc_dai_driver rt1015p_dai_driver = {
-1
sound/soc/codecs/rt1016.c
··· 595 595 .set_pll = rt1016_set_component_pll, 596 596 .use_pmdown_time = 1, 597 597 .endianness = 1, 598 - .non_legacy_dai_naming = 1, 599 598 }; 600 599 601 600 static const struct regmap_config rt1016_regmap = {
-1
sound/soc/codecs/rt1019.c
··· 522 522 .num_dapm_widgets = ARRAY_SIZE(rt1019_dapm_widgets), 523 523 .dapm_routes = rt1019_dapm_routes, 524 524 .num_dapm_routes = ARRAY_SIZE(rt1019_dapm_routes), 525 - .non_legacy_dai_naming = 1, 526 525 .endianness = 1, 527 526 }; 528 527
-1
sound/soc/codecs/rt1305.c
··· 946 946 .set_pll = rt1305_set_component_pll, 947 947 .use_pmdown_time = 1, 948 948 .endianness = 1, 949 - .non_legacy_dai_naming = 1, 950 949 }; 951 950 952 951 static const struct regmap_config rt1305_regmap = {
-1
sound/soc/codecs/rt1308.c
··· 765 765 .set_pll = rt1308_set_component_pll, 766 766 .use_pmdown_time = 1, 767 767 .endianness = 1, 768 - .non_legacy_dai_naming = 1, 769 768 }; 770 769 771 770 static const struct regmap_config rt1308_regmap = {
-1
sound/soc/codecs/rt274.c
··· 1072 1072 .num_dapm_routes = ARRAY_SIZE(rt274_dapm_routes), 1073 1073 .use_pmdown_time = 1, 1074 1074 .endianness = 1, 1075 - .non_legacy_dai_naming = 1, 1076 1075 }; 1077 1076 1078 1077 static const struct regmap_config rt274_regmap = {
-1
sound/soc/codecs/rt286.c
··· 1058 1058 .num_dapm_routes = ARRAY_SIZE(rt286_dapm_routes), 1059 1059 .use_pmdown_time = 1, 1060 1060 .endianness = 1, 1061 - .non_legacy_dai_naming = 1, 1062 1061 }; 1063 1062 1064 1063 static const struct regmap_config rt286_regmap = {
-1
sound/soc/codecs/rt298.c
··· 1123 1123 .num_dapm_routes = ARRAY_SIZE(rt298_dapm_routes), 1124 1124 .use_pmdown_time = 1, 1125 1125 .endianness = 1, 1126 - .non_legacy_dai_naming = 1, 1127 1126 }; 1128 1127 1129 1128 static const struct regmap_config rt298_regmap = {
-1
sound/soc/codecs/rt5514.c
··· 1173 1173 .num_dapm_routes = ARRAY_SIZE(rt5514_dapm_routes), 1174 1174 .use_pmdown_time = 1, 1175 1175 .endianness = 1, 1176 - .non_legacy_dai_naming = 1, 1177 1176 }; 1178 1177 1179 1178 static const struct regmap_config rt5514_i2c_regmap = {
-1
sound/soc/codecs/rt5616.c
··· 1304 1304 .num_dapm_routes = ARRAY_SIZE(rt5616_dapm_routes), 1305 1305 .use_pmdown_time = 1, 1306 1306 .endianness = 1, 1307 - .non_legacy_dai_naming = 1, 1308 1307 }; 1309 1308 1310 1309 static const struct regmap_config rt5616_regmap = {
-1
sound/soc/codecs/rt5631.c
··· 1666 1666 .idle_bias_on = 1, 1667 1667 .use_pmdown_time = 1, 1668 1668 .endianness = 1, 1669 - .non_legacy_dai_naming = 1, 1670 1669 }; 1671 1670 1672 1671 static const struct i2c_device_id rt5631_i2c_id[] = {
-2
sound/soc/codecs/rt5640.c
··· 2867 2867 .num_dapm_routes = ARRAY_SIZE(rt5640_dapm_routes), 2868 2868 .use_pmdown_time = 1, 2869 2869 .endianness = 1, 2870 - .non_legacy_dai_naming = 1, 2871 - 2872 2870 }; 2873 2871 2874 2872 static const struct regmap_config rt5640_regmap = {
-1
sound/soc/codecs/rt5645.c
··· 3534 3534 .num_dapm_routes = ARRAY_SIZE(rt5645_dapm_routes), 3535 3535 .use_pmdown_time = 1, 3536 3536 .endianness = 1, 3537 - .non_legacy_dai_naming = 1, 3538 3537 }; 3539 3538 3540 3539 static const struct regmap_config rt5645_regmap = {
-1
sound/soc/codecs/rt5651.c
··· 2161 2161 .num_dapm_routes = ARRAY_SIZE(rt5651_dapm_routes), 2162 2162 .use_pmdown_time = 1, 2163 2163 .endianness = 1, 2164 - .non_legacy_dai_naming = 1, 2165 2164 }; 2166 2165 2167 2166 static const struct regmap_config rt5651_regmap = {
-1
sound/soc/codecs/rt5659.c
··· 3801 3801 .set_pll = rt5659_set_component_pll, 3802 3802 .use_pmdown_time = 1, 3803 3803 .endianness = 1, 3804 - .non_legacy_dai_naming = 1, 3805 3804 }; 3806 3805 3807 3806
-1
sound/soc/codecs/rt5660.c
··· 1208 1208 .num_dapm_routes = ARRAY_SIZE(rt5660_dapm_routes), 1209 1209 .use_pmdown_time = 1, 1210 1210 .endianness = 1, 1211 - .non_legacy_dai_naming = 1, 1212 1211 }; 1213 1212 1214 1213 static const struct regmap_config rt5660_regmap = {
-1
sound/soc/codecs/rt5663.c
··· 3258 3258 .set_jack = rt5663_set_jack_detect, 3259 3259 .use_pmdown_time = 1, 3260 3260 .endianness = 1, 3261 - .non_legacy_dai_naming = 1, 3262 3261 }; 3263 3262 3264 3263 static const struct regmap_config rt5663_v2_regmap = {
-1
sound/soc/codecs/rt5665.c
··· 4617 4617 .set_jack = rt5665_set_jack_detect, 4618 4618 .use_pmdown_time = 1, 4619 4619 .endianness = 1, 4620 - .non_legacy_dai_naming = 1, 4621 4620 }; 4622 4621 4623 4622
-1
sound/soc/codecs/rt5668.c
··· 2362 2362 .set_jack = rt5668_set_jack_detect, 2363 2363 .use_pmdown_time = 1, 2364 2364 .endianness = 1, 2365 - .non_legacy_dai_naming = 1, 2366 2365 }; 2367 2366 2368 2367 static const struct regmap_config rt5668_regmap = {
-1
sound/soc/codecs/rt5670.c
··· 2852 2852 .num_dapm_routes = ARRAY_SIZE(rt5670_dapm_routes), 2853 2853 .use_pmdown_time = 1, 2854 2854 .endianness = 1, 2855 - .non_legacy_dai_naming = 1, 2856 2855 }; 2857 2856 2858 2857 static const struct regmap_config rt5670_regmap = {
-1
sound/soc/codecs/rt5677.c
··· 5189 5189 .num_dapm_routes = ARRAY_SIZE(rt5677_dapm_routes), 5190 5190 .use_pmdown_time = 1, 5191 5191 .endianness = 1, 5192 - .non_legacy_dai_naming = 1, 5193 5192 }; 5194 5193 5195 5194 static const struct regmap_config rt5677_regmap_physical = {
-1
sound/soc/codecs/rt5682.c
··· 3064 3064 .set_jack = rt5682_set_jack_detect, 3065 3065 .use_pmdown_time = 1, 3066 3066 .endianness = 1, 3067 - .non_legacy_dai_naming = 1, 3068 3067 }; 3069 3068 EXPORT_SYMBOL_GPL(rt5682_soc_component_dev); 3070 3069
-1
sound/soc/codecs/rt5682s.c
··· 2893 2893 .set_jack = rt5682s_set_jack_detect, 2894 2894 .use_pmdown_time = 1, 2895 2895 .endianness = 1, 2896 - .non_legacy_dai_naming = 1, 2897 2896 }; 2898 2897 2899 2898 static int rt5682s_parse_dt(struct rt5682s_priv *rt5682s, struct device *dev)
-1
sound/soc/codecs/sgtl5000.c
··· 1536 1536 .idle_bias_on = 1, 1537 1537 .use_pmdown_time = 1, 1538 1538 .endianness = 1, 1539 - .non_legacy_dai_naming = 1, 1540 1539 }; 1541 1540 1542 1541 static const struct regmap_config sgtl5000_regmap = {
-1
sound/soc/codecs/si476x.c
··· 239 239 .idle_bias_on = 1, 240 240 .use_pmdown_time = 1, 241 241 .endianness = 1, 242 - .non_legacy_dai_naming = 1, 243 242 }; 244 243 245 244 static int si476x_platform_probe(struct platform_device *pdev)
-1
sound/soc/codecs/spdif_receiver.c
··· 43 43 .idle_bias_on = 1, 44 44 .use_pmdown_time = 1, 45 45 .endianness = 1, 46 - .non_legacy_dai_naming = 1, 47 46 }; 48 47 49 48 static struct snd_soc_dai_driver dir_stub_dai = {
-1
sound/soc/codecs/spdif_transmitter.c
··· 43 43 .idle_bias_on = 1, 44 44 .use_pmdown_time = 1, 45 45 .endianness = 1, 46 - .non_legacy_dai_naming = 1, 47 46 }; 48 47 49 48 static struct snd_soc_dai_driver dit_stub_dai = {
-1
sound/soc/codecs/ssm2518.c
··· 721 721 .num_dapm_routes = ARRAY_SIZE(ssm2518_routes), 722 722 .use_pmdown_time = 1, 723 723 .endianness = 1, 724 - .non_legacy_dai_naming = 1, 725 724 }; 726 725 727 726 static const struct regmap_config ssm2518_regmap_config = {
-1
sound/soc/codecs/ssm2602.c
··· 624 624 .idle_bias_on = 1, 625 625 .use_pmdown_time = 1, 626 626 .endianness = 1, 627 - .non_legacy_dai_naming = 1, 628 627 }; 629 628 630 629 static bool ssm2602_register_volatile(struct device *dev, unsigned int reg)
-1
sound/soc/codecs/ssm4567.c
··· 427 427 .num_dapm_routes = ARRAY_SIZE(ssm4567_routes), 428 428 .use_pmdown_time = 1, 429 429 .endianness = 1, 430 - .non_legacy_dai_naming = 1, 431 430 }; 432 431 433 432 static const struct regmap_config ssm4567_regmap_config = {
-1
sound/soc/codecs/sta32x.c
··· 1014 1014 .idle_bias_on = 1, 1015 1015 .use_pmdown_time = 1, 1016 1016 .endianness = 1, 1017 - .non_legacy_dai_naming = 1, 1018 1017 }; 1019 1018 1020 1019 static const struct regmap_config sta32x_regmap = {
-1
sound/soc/codecs/sta350.c
··· 1057 1057 .idle_bias_on = 1, 1058 1058 .use_pmdown_time = 1, 1059 1059 .endianness = 1, 1060 - .non_legacy_dai_naming = 1, 1061 1060 }; 1062 1061 1063 1062 static const struct regmap_config sta350_regmap = {
-1
sound/soc/codecs/sta529.c
··· 322 322 .idle_bias_on = 1, 323 323 .use_pmdown_time = 1, 324 324 .endianness = 1, 325 - .non_legacy_dai_naming = 1, 326 325 }; 327 326 328 327 static const struct regmap_config sta529_regmap = {
-2
sound/soc/codecs/stac9766.c
··· 313 313 .idle_bias_on = 1, 314 314 .use_pmdown_time = 1, 315 315 .endianness = 1, 316 - .non_legacy_dai_naming = 1, 317 - 318 316 }; 319 317 320 318 static int stac9766_probe(struct platform_device *pdev)
-1
sound/soc/codecs/sti-sas.c
··· 398 398 .idle_bias_on = 1, 399 399 .use_pmdown_time = 1, 400 400 .endianness = 1, 401 - .non_legacy_dai_naming = 1, 402 401 }; 403 402 404 403 static const struct of_device_id sti_sas_dev_match[] = {
-1
sound/soc/codecs/tas2552.c
··· 668 668 .num_dapm_routes = ARRAY_SIZE(tas2552_audio_map), 669 669 .idle_bias_on = 1, 670 670 .endianness = 1, 671 - .non_legacy_dai_naming = 1, 672 671 }; 673 672 674 673 static const struct regmap_config tas2552_regmap_config = {
-2
sound/soc/codecs/tas2562.c
··· 589 589 .idle_bias_on = 1, 590 590 .use_pmdown_time = 1, 591 591 .endianness = 1, 592 - .non_legacy_dai_naming = 1, 593 592 }; 594 593 595 594 static const struct snd_soc_dapm_widget tas2562_dapm_widgets[] = { ··· 628 629 .idle_bias_on = 1, 629 630 .use_pmdown_time = 1, 630 631 .endianness = 1, 631 - .non_legacy_dai_naming = 1, 632 632 }; 633 633 634 634 static const struct snd_soc_dai_ops tas2562_speaker_dai_ops = {
-1
sound/soc/codecs/tas2764.c
··· 548 548 .num_dapm_routes = ARRAY_SIZE(tas2764_audio_map), 549 549 .idle_bias_on = 1, 550 550 .endianness = 1, 551 - .non_legacy_dai_naming = 1, 552 551 }; 553 552 554 553 static const struct reg_default tas2764_reg_defaults[] = {
-1
sound/soc/codecs/tas2770.c
··· 546 546 .num_dapm_routes = ARRAY_SIZE(tas2770_audio_map), 547 547 .idle_bias_on = 1, 548 548 .endianness = 1, 549 - .non_legacy_dai_naming = 1, 550 549 }; 551 550 552 551 static int tas2770_register_codec(struct tas2770_priv *tas2770)
-1
sound/soc/codecs/tas5086.c
··· 888 888 .idle_bias_on = 1, 889 889 .use_pmdown_time = 1, 890 890 .endianness = 1, 891 - .non_legacy_dai_naming = 1, 892 891 }; 893 892 894 893 static const struct i2c_device_id tas5086_i2c_id[] = {
-1
sound/soc/codecs/tas571x.c
··· 756 756 .num_dapm_routes = ARRAY_SIZE(tas571x_dapm_routes), 757 757 .use_pmdown_time = 1, 758 758 .endianness = 1, 759 - .non_legacy_dai_naming = 1, 760 759 }; 761 760 762 761 static struct snd_soc_dai_driver tas571x_dai = {
-2
sound/soc/codecs/tas5720.c
··· 572 572 .idle_bias_on = 1, 573 573 .use_pmdown_time = 1, 574 574 .endianness = 1, 575 - .non_legacy_dai_naming = 1, 576 575 }; 577 576 578 577 static const struct snd_soc_component_driver soc_component_dev_tas5722 = { ··· 588 589 .idle_bias_on = 1, 589 590 .use_pmdown_time = 1, 590 591 .endianness = 1, 591 - .non_legacy_dai_naming = 1, 592 592 }; 593 593 594 594 /* PCM rates supported by the TAS5720 driver */
-1
sound/soc/codecs/tas5805m.c
··· 367 367 .num_dapm_routes = ARRAY_SIZE(tas5805m_audio_map), 368 368 .use_pmdown_time = 1, 369 369 .endianness = 1, 370 - .non_legacy_dai_naming = 1, 371 370 }; 372 371 373 372 static int tas5805m_mute(struct snd_soc_dai *dai, int mute, int direction)
-1
sound/soc/codecs/tas6424.c
··· 375 375 .num_dapm_routes = ARRAY_SIZE(tas6424_audio_map), 376 376 .use_pmdown_time = 1, 377 377 .endianness = 1, 378 - .non_legacy_dai_naming = 1, 379 378 }; 380 379 381 380 static const struct snd_soc_dai_ops tas6424_speaker_dai_ops = {
-1
sound/soc/codecs/tfa9879.c
··· 235 235 .idle_bias_on = 1, 236 236 .use_pmdown_time = 1, 237 237 .endianness = 1, 238 - .non_legacy_dai_naming = 1, 239 238 }; 240 239 241 240 static const struct regmap_config tfa9879_regmap = {
-1
sound/soc/codecs/tfa989x.c
··· 138 138 .num_dapm_routes = ARRAY_SIZE(tfa989x_dapm_routes), 139 139 .use_pmdown_time = 1, 140 140 .endianness = 1, 141 - .non_legacy_dai_naming = 1, 142 141 }; 143 142 144 143 static const unsigned int tfa989x_rates[] = {
-1
sound/soc/codecs/tlv320adcx140.c
··· 1053 1053 .idle_bias_on = 0, 1054 1054 .use_pmdown_time = 1, 1055 1055 .endianness = 1, 1056 - .non_legacy_dai_naming = 1, 1057 1056 }; 1058 1057 1059 1058 static struct snd_soc_dai_driver adcx140_dai_driver[] = {
-1
sound/soc/codecs/tlv320aic23.c
··· 586 586 .idle_bias_on = 1, 587 587 .use_pmdown_time = 1, 588 588 .endianness = 1, 589 - .non_legacy_dai_naming = 1, 590 589 }; 591 590 592 591 int tlv320aic23_probe(struct device *dev, struct regmap *regmap)
-1
sound/soc/codecs/tlv320aic26.c
··· 331 331 .idle_bias_on = 1, 332 332 .use_pmdown_time = 1, 333 333 .endianness = 1, 334 - .non_legacy_dai_naming = 1, 335 334 }; 336 335 337 336 static const struct regmap_config aic26_regmap = {
-1
sound/soc/codecs/tlv320aic31xx.c
··· 1417 1417 .idle_bias_on = 1, 1418 1418 .use_pmdown_time = 1, 1419 1419 .endianness = 1, 1420 - .non_legacy_dai_naming = 1, 1421 1420 }; 1422 1421 1423 1422 static const struct snd_soc_dai_ops aic31xx_dai_ops = {
-2
sound/soc/codecs/tlv320aic32x4.c
··· 1077 1077 .idle_bias_on = 1, 1078 1078 .use_pmdown_time = 1, 1079 1079 .endianness = 1, 1080 - .non_legacy_dai_naming = 1, 1081 1080 }; 1082 1081 1083 1082 static const struct snd_kcontrol_new aic32x4_tas2505_snd_controls[] = { ··· 1198 1199 .idle_bias_on = 1, 1199 1200 .use_pmdown_time = 1, 1200 1201 .endianness = 1, 1201 - .non_legacy_dai_naming = 1, 1202 1202 }; 1203 1203 1204 1204 static int aic32x4_parse_dt(struct aic32x4_priv *aic32x4,
-1
sound/soc/codecs/tlv320aic3x.c
··· 1697 1697 .num_dapm_routes = ARRAY_SIZE(intercon), 1698 1698 .use_pmdown_time = 1, 1699 1699 .endianness = 1, 1700 - .non_legacy_dai_naming = 1, 1701 1700 }; 1702 1701 1703 1702 static void aic3x_configure_ocmv(struct device *dev, struct aic3x_priv *aic3x)
-1
sound/soc/codecs/tlv320dac33.c
··· 1431 1431 .num_dapm_routes = ARRAY_SIZE(audio_map), 1432 1432 .use_pmdown_time = 1, 1433 1433 .endianness = 1, 1434 - .non_legacy_dai_naming = 1, 1435 1434 }; 1436 1435 1437 1436 #define DAC33_RATES (SNDRV_PCM_RATE_44100 | \
-1
sound/soc/codecs/tscs42xx.c
··· 1358 1358 .idle_bias_on = 1, 1359 1359 .use_pmdown_time = 1, 1360 1360 .endianness = 1, 1361 - .non_legacy_dai_naming = 1, 1362 1361 }; 1363 1362 1364 1363 static inline void init_coeff_ram_cache(struct tscs42xx *tscs42xx)
-1
sound/soc/codecs/twl4030.c
··· 2195 2195 .num_dapm_routes = ARRAY_SIZE(intercon), 2196 2196 .use_pmdown_time = 1, 2197 2197 .endianness = 1, 2198 - .non_legacy_dai_naming = 1, 2199 2198 }; 2200 2199 2201 2200 static int twl4030_codec_probe(struct platform_device *pdev)
-1
sound/soc/codecs/twl6040.c
··· 1153 1153 .suspend_bias_off = 1, 1154 1154 .idle_bias_on = 1, 1155 1155 .endianness = 1, 1156 - .non_legacy_dai_naming = 1, 1157 1156 }; 1158 1157 1159 1158 static int twl6040_codec_probe(struct platform_device *pdev)
-1
sound/soc/codecs/uda1334.c
··· 236 236 .idle_bias_on = 1, 237 237 .use_pmdown_time = 1, 238 238 .endianness = 1, 239 - .non_legacy_dai_naming = 1, 240 239 }; 241 240 242 241 static const struct of_device_id uda1334_of_match[] = {
-1
sound/soc/codecs/uda134x.c
··· 527 527 .idle_bias_on = 1, 528 528 .use_pmdown_time = 1, 529 529 .endianness = 1, 530 - .non_legacy_dai_naming = 1, 531 530 }; 532 531 533 532 static const struct regmap_config uda134x_regmap_config = {
-1
sound/soc/codecs/uda1380.c
··· 736 736 .idle_bias_on = 1, 737 737 .use_pmdown_time = 1, 738 738 .endianness = 1, 739 - .non_legacy_dai_naming = 1, 740 739 }; 741 740 742 741 static int uda1380_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/wl1273.c
··· 475 475 .idle_bias_on = 1, 476 476 .use_pmdown_time = 1, 477 477 .endianness = 1, 478 - .non_legacy_dai_naming = 1, 479 478 }; 480 479 481 480 static int wl1273_platform_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm0010.c
··· 789 789 .num_dapm_routes = ARRAY_SIZE(wm0010_dapm_routes), 790 790 .use_pmdown_time = 1, 791 791 .endianness = 1, 792 - .non_legacy_dai_naming = 1, 793 792 }; 794 793 795 794 #define WM0010_RATES (SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000)
-1
sound/soc/codecs/wm1250-ev1.c
··· 144 144 .set_bias_level = wm1250_ev1_set_bias_level, 145 145 .use_pmdown_time = 1, 146 146 .endianness = 1, 147 - .non_legacy_dai_naming = 1, 148 147 }; 149 148 150 149 static int wm1250_ev1_pdata(struct i2c_client *i2c)
-1
sound/soc/codecs/wm2000.c
··· 803 803 .num_dapm_routes = ARRAY_SIZE(wm2000_audio_map), 804 804 .idle_bias_on = 1, 805 805 .use_pmdown_time = 1, 806 - .non_legacy_dai_naming = 1, 807 806 }; 808 807 809 808 static int wm2000_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/wm2200.c
··· 2104 2104 .dapm_routes = wm2200_dapm_routes, 2105 2105 .num_dapm_routes = ARRAY_SIZE(wm2200_dapm_routes), 2106 2106 .endianness = 1, 2107 - .non_legacy_dai_naming = 1, 2108 2107 }; 2109 2108 2110 2109 static irqreturn_t wm2200_irq(int irq, void *data)
-1
sound/soc/codecs/wm5100.c
··· 2389 2389 .num_dapm_routes = ARRAY_SIZE(wm5100_dapm_routes), 2390 2390 .use_pmdown_time = 1, 2391 2391 .endianness = 1, 2392 - .non_legacy_dai_naming = 1, 2393 2392 }; 2394 2393 2395 2394 static const struct regmap_config wm5100_regmap = {
-1
sound/soc/codecs/wm5102.c
··· 2015 2015 .num_dapm_routes = ARRAY_SIZE(wm5102_dapm_routes), 2016 2016 .use_pmdown_time = 1, 2017 2017 .endianness = 1, 2018 - .non_legacy_dai_naming = 1, 2019 2018 }; 2020 2019 2021 2020 static int wm5102_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm5110.c
··· 2385 2385 .num_dapm_routes = ARRAY_SIZE(wm5110_dapm_routes), 2386 2386 .use_pmdown_time = 1, 2387 2387 .endianness = 1, 2388 - .non_legacy_dai_naming = 1, 2389 2388 }; 2390 2389 2391 2390 static int wm5110_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8350.c
··· 1613 1613 .idle_bias_on = 1, 1614 1614 .use_pmdown_time = 1, 1615 1615 .endianness = 1, 1616 - .non_legacy_dai_naming = 1, 1617 1616 }; 1618 1617 1619 1618 static int wm8350_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8400.c
··· 1322 1322 .idle_bias_on = 1, 1323 1323 .use_pmdown_time = 1, 1324 1324 .endianness = 1, 1325 - .non_legacy_dai_naming = 1, 1326 1325 }; 1327 1326 1328 1327 static int wm8400_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8510.c
··· 592 592 .idle_bias_on = 1, 593 593 .use_pmdown_time = 1, 594 594 .endianness = 1, 595 - .non_legacy_dai_naming = 1, 596 595 }; 597 596 598 597 static const struct of_device_id wm8510_of_match[] = {
-1
sound/soc/codecs/wm8523.c
··· 422 422 .idle_bias_on = 1, 423 423 .use_pmdown_time = 1, 424 424 .endianness = 1, 425 - .non_legacy_dai_naming = 1, 426 425 }; 427 426 428 427 static const struct of_device_id wm8523_of_match[] = {
-1
sound/soc/codecs/wm8524.c
··· 203 203 .idle_bias_on = 1, 204 204 .use_pmdown_time = 1, 205 205 .endianness = 1, 206 - .non_legacy_dai_naming = 1, 207 206 }; 208 207 209 208 static const struct of_device_id wm8524_of_match[] = {
-1
sound/soc/codecs/wm8580.c
··· 966 966 .idle_bias_on = 1, 967 967 .use_pmdown_time = 1, 968 968 .endianness = 1, 969 - .non_legacy_dai_naming = 1, 970 969 }; 971 970 972 971 static const struct regmap_config wm8580_regmap = {
-1
sound/soc/codecs/wm8711.c
··· 378 378 .idle_bias_on = 1, 379 379 .use_pmdown_time = 1, 380 380 .endianness = 1, 381 - .non_legacy_dai_naming = 1, 382 381 }; 383 382 384 383 static const struct of_device_id wm8711_of_match[] = {
-1
sound/soc/codecs/wm8727.c
··· 55 55 .idle_bias_on = 1, 56 56 .use_pmdown_time = 1, 57 57 .endianness = 1, 58 - .non_legacy_dai_naming = 1, 59 58 }; 60 59 61 60 static int wm8727_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8728.c
··· 221 221 .idle_bias_on = 1, 222 222 .use_pmdown_time = 1, 223 223 .endianness = 1, 224 - .non_legacy_dai_naming = 1, 225 224 }; 226 225 227 226 static const struct of_device_id wm8728_of_match[] = {
-1
sound/soc/codecs/wm8731.c
··· 561 561 .idle_bias_on = 1, 562 562 .use_pmdown_time = 1, 563 563 .endianness = 1, 564 - .non_legacy_dai_naming = 1, 565 564 }; 566 565 567 566 int wm8731_init(struct device *dev, struct wm8731_priv *wm8731)
-1
sound/soc/codecs/wm8737.c
··· 583 583 .idle_bias_on = 1, 584 584 .use_pmdown_time = 1, 585 585 .endianness = 1, 586 - .non_legacy_dai_naming = 1, 587 586 }; 588 587 589 588 static const struct of_device_id wm8737_of_match[] = {
-1
sound/soc/codecs/wm8741.c
··· 528 528 .idle_bias_on = 1, 529 529 .use_pmdown_time = 1, 530 530 .endianness = 1, 531 - .non_legacy_dai_naming = 1, 532 531 }; 533 532 534 533 static const struct of_device_id wm8741_of_match[] = {
-1
sound/soc/codecs/wm8750.c
··· 719 719 .idle_bias_on = 1, 720 720 .use_pmdown_time = 1, 721 721 .endianness = 1, 722 - .non_legacy_dai_naming = 1, 723 722 }; 724 723 725 724 static const struct of_device_id wm8750_of_match[] = {
-1
sound/soc/codecs/wm8753.c
··· 1492 1492 .idle_bias_on = 1, 1493 1493 .use_pmdown_time = 1, 1494 1494 .endianness = 1, 1495 - .non_legacy_dai_naming = 1, 1496 1495 }; 1497 1496 1498 1497 static const struct of_device_id wm8753_of_match[] = {
-1
sound/soc/codecs/wm8770.c
··· 617 617 .num_dapm_routes = ARRAY_SIZE(wm8770_intercon), 618 618 .use_pmdown_time = 1, 619 619 .endianness = 1, 620 - .non_legacy_dai_naming = 1, 621 620 }; 622 621 623 622 static const struct of_device_id wm8770_of_match[] = {
-1
sound/soc/codecs/wm8776.c
··· 436 436 .idle_bias_on = 1, 437 437 .use_pmdown_time = 1, 438 438 .endianness = 1, 439 - .non_legacy_dai_naming = 1, 440 439 }; 441 440 442 441 static const struct of_device_id wm8776_of_match[] = {
-1
sound/soc/codecs/wm8782.c
··· 99 99 .idle_bias_on = 1, 100 100 .use_pmdown_time = 1, 101 101 .endianness = 1, 102 - .non_legacy_dai_naming = 1, 103 102 }; 104 103 105 104 static int wm8782_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8804.c
··· 546 546 .num_dapm_routes = ARRAY_SIZE(wm8804_dapm_routes), 547 547 .use_pmdown_time = 1, 548 548 .endianness = 1, 549 - .non_legacy_dai_naming = 1, 550 549 }; 551 550 552 551 const struct regmap_config wm8804_regmap_config = {
-1
sound/soc/codecs/wm8900.c
··· 1214 1214 .idle_bias_on = 1, 1215 1215 .use_pmdown_time = 1, 1216 1216 .endianness = 1, 1217 - .non_legacy_dai_naming = 1, 1218 1217 }; 1219 1218 1220 1219 static const struct regmap_config wm8900_regmap = {
-1
sound/soc/codecs/wm8903.c
··· 1893 1893 .idle_bias_on = 1, 1894 1894 .use_pmdown_time = 1, 1895 1895 .endianness = 1, 1896 - .non_legacy_dai_naming = 1, 1897 1896 }; 1898 1897 1899 1898 static const struct regmap_config wm8903_regmap = {
-1
sound/soc/codecs/wm8904.c
··· 2131 2131 .set_bias_level = wm8904_set_bias_level, 2132 2132 .use_pmdown_time = 1, 2133 2133 .endianness = 1, 2134 - .non_legacy_dai_naming = 1, 2135 2134 }; 2136 2135 2137 2136 static const struct regmap_config wm8904_regmap = {
-1
sound/soc/codecs/wm8940.c
··· 734 734 .idle_bias_on = 1, 735 735 .use_pmdown_time = 1, 736 736 .endianness = 1, 737 - .non_legacy_dai_naming = 1, 738 737 }; 739 738 740 739 static const struct regmap_config wm8940_regmap = {
-1
sound/soc/codecs/wm8955.c
··· 952 952 .idle_bias_on = 1, 953 953 .use_pmdown_time = 1, 954 954 .endianness = 1, 955 - .non_legacy_dai_naming = 1, 956 955 }; 957 956 958 957 static const struct regmap_config wm8955_regmap = {
-1
sound/soc/codecs/wm8960.c
··· 1378 1378 .idle_bias_on = 1, 1379 1379 .use_pmdown_time = 1, 1380 1380 .endianness = 1, 1381 - .non_legacy_dai_naming = 1, 1382 1381 }; 1383 1382 1384 1383 static const struct regmap_config wm8960_regmap = {
-1
sound/soc/codecs/wm8961.c
··· 895 895 .idle_bias_on = 1, 896 896 .use_pmdown_time = 1, 897 897 .endianness = 1, 898 - .non_legacy_dai_naming = 1, 899 898 }; 900 899 901 900 static const struct regmap_config wm8961_regmap = {
-1
sound/soc/codecs/wm8962.c
··· 3502 3502 .set_pll = wm8962_set_fll, 3503 3503 .use_pmdown_time = 1, 3504 3504 .endianness = 1, 3505 - .non_legacy_dai_naming = 1, 3506 3505 }; 3507 3506 3508 3507 /* Improve power consumption for IN4 DC measurement mode */
-1
sound/soc/codecs/wm8971.c
··· 659 659 .idle_bias_on = 1, 660 660 .use_pmdown_time = 1, 661 661 .endianness = 1, 662 - .non_legacy_dai_naming = 1, 663 662 }; 664 663 665 664 static const struct regmap_config wm8971_regmap = {
-1
sound/soc/codecs/wm8974.c
··· 682 682 .idle_bias_on = 1, 683 683 .use_pmdown_time = 1, 684 684 .endianness = 1, 685 - .non_legacy_dai_naming = 1, 686 685 }; 687 686 688 687 static int wm8974_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/wm8978.c
··· 1005 1005 .idle_bias_on = 1, 1006 1006 .use_pmdown_time = 1, 1007 1007 .endianness = 1, 1008 - .non_legacy_dai_naming = 1, 1009 1008 }; 1010 1009 1011 1010 static const struct regmap_config wm8978_regmap_config = {
-1
sound/soc/codecs/wm8983.c
··· 987 987 .idle_bias_on = 1, 988 988 .use_pmdown_time = 1, 989 989 .endianness = 1, 990 - .non_legacy_dai_naming = 1, 991 990 }; 992 991 993 992 static const struct regmap_config wm8983_regmap = {
-1
sound/soc/codecs/wm8985.c
··· 1116 1116 .idle_bias_on = 1, 1117 1117 .use_pmdown_time = 1, 1118 1118 .endianness = 1, 1119 - .non_legacy_dai_naming = 1, 1120 1119 }; 1121 1120 1122 1121 static const struct regmap_config wm8985_regmap = {
-1
sound/soc/codecs/wm8988.c
··· 823 823 .idle_bias_on = 1, 824 824 .use_pmdown_time = 1, 825 825 .endianness = 1, 826 - .non_legacy_dai_naming = 1, 827 826 }; 828 827 829 828 static const struct regmap_config wm8988_regmap = {
-1
sound/soc/codecs/wm8990.c
··· 1217 1217 .idle_bias_on = 1, 1218 1218 .use_pmdown_time = 1, 1219 1219 .endianness = 1, 1220 - .non_legacy_dai_naming = 1, 1221 1220 }; 1222 1221 1223 1222 static int wm8990_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/wm8991.c
··· 1243 1243 .idle_bias_on = 1, 1244 1244 .use_pmdown_time = 1, 1245 1245 .endianness = 1, 1246 - .non_legacy_dai_naming = 1, 1247 1246 }; 1248 1247 1249 1248 static const struct regmap_config wm8991_regmap = {
-1
sound/soc/codecs/wm8993.c
··· 1621 1621 .idle_bias_on = 1, 1622 1622 .use_pmdown_time = 1, 1623 1623 .endianness = 1, 1624 - .non_legacy_dai_naming = 1, 1625 1624 }; 1626 1625 1627 1626 static int wm8993_i2c_probe(struct i2c_client *i2c)
-1
sound/soc/codecs/wm8994.c
··· 4614 4614 .idle_bias_on = 1, 4615 4615 .use_pmdown_time = 1, 4616 4616 .endianness = 1, 4617 - .non_legacy_dai_naming = 1, 4618 4617 }; 4619 4618 4620 4619 static int wm8994_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8995.c
··· 2182 2182 .num_dapm_routes = ARRAY_SIZE(wm8995_intercon), 2183 2183 .use_pmdown_time = 1, 2184 2184 .endianness = 1, 2185 - .non_legacy_dai_naming = 1, 2186 2185 }; 2187 2186 2188 2187 static const struct regmap_config wm8995_regmap = {
-2
sound/soc/codecs/wm8996.c
··· 2695 2695 .set_pll = wm8996_set_fll, 2696 2696 .use_pmdown_time = 1, 2697 2697 .endianness = 1, 2698 - .non_legacy_dai_naming = 1, 2699 - 2700 2698 }; 2701 2699 2702 2700 #define WM8996_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
-1
sound/soc/codecs/wm8997.c
··· 1105 1105 .num_dapm_routes = ARRAY_SIZE(wm8997_dapm_routes), 1106 1106 .use_pmdown_time = 1, 1107 1107 .endianness = 1, 1108 - .non_legacy_dai_naming = 1, 1109 1108 }; 1110 1109 1111 1110 static int wm8997_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm8998.c
··· 1325 1325 .num_dapm_routes = ARRAY_SIZE(wm8998_dapm_routes), 1326 1326 .use_pmdown_time = 1, 1327 1327 .endianness = 1, 1328 - .non_legacy_dai_naming = 1, 1329 1328 }; 1330 1329 1331 1330 static int wm8998_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm9081.c
··· 1284 1284 .num_dapm_routes = ARRAY_SIZE(wm9081_audio_paths), 1285 1285 .use_pmdown_time = 1, 1286 1286 .endianness = 1, 1287 - .non_legacy_dai_naming = 1, 1288 1287 }; 1289 1288 1290 1289 static const struct regmap_config wm9081_regmap = {
-1
sound/soc/codecs/wm9090.c
··· 543 543 .suspend_bias_off = 1, 544 544 .idle_bias_on = 1, 545 545 .use_pmdown_time = 1, 546 - .non_legacy_dai_naming = 1, 547 546 }; 548 547 549 548 static const struct regmap_config wm9090_regmap = {
-1
sound/soc/codecs/wm9705.c
··· 368 368 .idle_bias_on = 1, 369 369 .use_pmdown_time = 1, 370 370 .endianness = 1, 371 - .non_legacy_dai_naming = 1, 372 371 }; 373 372 374 373 static int wm9705_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm9712.c
··· 692 692 .idle_bias_on = 1, 693 693 .use_pmdown_time = 1, 694 694 .endianness = 1, 695 - .non_legacy_dai_naming = 1, 696 695 }; 697 696 698 697 static int wm9712_probe(struct platform_device *pdev)
-1
sound/soc/codecs/wm9713.c
··· 1257 1257 .idle_bias_on = 1, 1258 1258 .use_pmdown_time = 1, 1259 1259 .endianness = 1, 1260 - .non_legacy_dai_naming = 1, 1261 1260 }; 1262 1261 1263 1262 static int wm9713_probe(struct platform_device *pdev)
-1
sound/soc/codecs/zl38060.c
··· 385 385 .dapm_routes = zl38_dapm_routes, 386 386 .num_dapm_routes = ARRAY_SIZE(zl38_dapm_routes), 387 387 .endianness = 1, 388 - .non_legacy_dai_naming = 1, 389 388 }; 390 389 391 390 static void chip_gpio_set(struct gpio_chip *c, unsigned int offset, int val)
+4 -3
sound/soc/dwc/dwc-i2s.c
··· 449 449 #endif 450 450 451 451 static const struct snd_soc_component_driver dw_i2s_component = { 452 - .name = "dw-i2s", 453 - .suspend = dw_i2s_suspend, 454 - .resume = dw_i2s_resume, 452 + .name = "dw-i2s", 453 + .suspend = dw_i2s_suspend, 454 + .resume = dw_i2s_resume, 455 + .legacy_dai_naming = 1, 455 456 }; 456 457 457 458 /*
+2 -1
sound/soc/fsl/fsl_aud2htx.c
··· 103 103 }; 104 104 105 105 static const struct snd_soc_component_driver fsl_aud2htx_component = { 106 - .name = "fsl-aud2htx", 106 + .name = "fsl-aud2htx", 107 + .legacy_dai_naming = 1, 107 108 }; 108 109 109 110 static const struct reg_default fsl_aud2htx_reg_defaults[] = {
+4 -3
sound/soc/fsl/fsl_easrc.c
··· 1572 1572 }; 1573 1573 1574 1574 static const struct snd_soc_component_driver fsl_easrc_component = { 1575 - .name = "fsl-easrc-dai", 1576 - .controls = fsl_easrc_snd_controls, 1577 - .num_controls = ARRAY_SIZE(fsl_easrc_snd_controls), 1575 + .name = "fsl-easrc-dai", 1576 + .controls = fsl_easrc_snd_controls, 1577 + .num_controls = ARRAY_SIZE(fsl_easrc_snd_controls), 1578 + .legacy_dai_naming = 1, 1578 1579 }; 1579 1580 1580 1581 static const struct reg_default fsl_easrc_reg_defaults[] = {
+2 -1
sound/soc/fsl/fsl_esai.c
··· 824 824 }; 825 825 826 826 static const struct snd_soc_component_driver fsl_esai_component = { 827 - .name = "fsl-esai", 827 + .name = "fsl-esai", 828 + .legacy_dai_naming = 1, 828 829 }; 829 830 830 831 static const struct reg_default fsl_esai_reg_defaults[] = {
-1
sound/soc/fsl/fsl_mqs.c
··· 155 155 156 156 static const struct snd_soc_component_driver soc_codec_fsl_mqs = { 157 157 .idle_bias_on = 1, 158 - .non_legacy_dai_naming = 1, 159 158 }; 160 159 161 160 static const struct snd_soc_dai_ops fsl_mqs_dai_ops = {
+2 -1
sound/soc/fsl/fsl_rpmsg.c
··· 135 135 }; 136 136 137 137 static const struct snd_soc_component_driver fsl_component = { 138 - .name = "fsl-rpmsg", 138 + .name = "fsl-rpmsg", 139 + .legacy_dai_naming = 1, 139 140 }; 140 141 141 142 static const struct fsl_rpmsg_soc_data imx7ulp_data = {
+3 -2
sound/soc/fsl/fsl_sai.c
··· 864 864 }; 865 865 866 866 static const struct snd_soc_component_driver fsl_component = { 867 - .name = "fsl-sai", 868 - .resume = fsl_sai_dai_resume, 867 + .name = "fsl-sai", 868 + .resume = fsl_sai_dai_resume, 869 + .legacy_dai_naming = 1, 869 870 }; 870 871 871 872 static struct reg_default fsl_sai_reg_defaults_ofs0[] = {
+2 -1
sound/soc/fsl/fsl_spdif.c
··· 1237 1237 }; 1238 1238 1239 1239 static const struct snd_soc_component_driver fsl_spdif_component = { 1240 - .name = "fsl-spdif", 1240 + .name = "fsl-spdif", 1241 + .legacy_dai_naming = 1, 1241 1242 }; 1242 1243 1243 1244 /* FSL SPDIF REGMAP */
+1
sound/soc/fsl/fsl_ssi.c
··· 1182 1182 1183 1183 static const struct snd_soc_component_driver fsl_ssi_component = { 1184 1184 .name = "fsl-ssi", 1185 + .legacy_dai_naming = 1, 1185 1186 }; 1186 1187 1187 1188 static struct snd_soc_dai_driver fsl_ssi_ac97_dai = {
+2 -1
sound/soc/fsl/fsl_xcvr.c
··· 911 911 }; 912 912 913 913 static const struct snd_soc_component_driver fsl_xcvr_comp = { 914 - .name = "fsl-xcvr-dai", 914 + .name = "fsl-xcvr-dai", 915 + .legacy_dai_naming = 1, 915 916 }; 916 917 917 918 static const struct reg_default fsl_xcvr_reg_defaults[] = {
+2 -1
sound/soc/fsl/mpc5200_psc_i2s.c
··· 148 148 } }; 149 149 150 150 static const struct snd_soc_component_driver psc_i2s_component = { 151 - .name = "mpc5200-i2s", 151 + .name = "mpc5200-i2s", 152 + .legacy_dai_naming = 1, 152 153 }; 153 154 154 155 /* ---------------------------------------------------------------------
+1 -1
sound/soc/generic/test-component.c
··· 564 564 cdriv->pcm_construct = test_component_pcm_construct; 565 565 cdriv->pointer = test_component_pointer; 566 566 cdriv->trigger = test_component_trigger; 567 + cdriv->legacy_dai_naming = 1; 567 568 } else { 568 569 cdriv->name = "test_codec"; 569 570 cdriv->idle_bias_on = 1; 570 571 cdriv->endianness = 1; 571 - cdriv->non_legacy_dai_naming = 1; 572 572 } 573 573 574 574 cdriv->open = test_component_open;
+1
sound/soc/hisilicon/hi6210-i2s.c
··· 539 539 540 540 static const struct snd_soc_component_driver hi6210_i2s_i2s_comp = { 541 541 .name = "hi6210_i2s-i2s", 542 + .legacy_dai_naming = 1, 542 543 }; 543 544 544 545 static int hi6210_i2s_probe(struct platform_device *pdev)
+2 -1
sound/soc/img/img-i2s-in.c
··· 386 386 } 387 387 388 388 static const struct snd_soc_component_driver img_i2s_in_component = { 389 - .name = "img-i2s-in" 389 + .name = "img-i2s-in", 390 + .legacy_dai_naming = 1, 390 391 }; 391 392 392 393 static int img_i2s_in_dma_prepare_slave_config(struct snd_pcm_substream *st,
+2 -1
sound/soc/img/img-i2s-out.c
··· 392 392 } 393 393 394 394 static const struct snd_soc_component_driver img_i2s_out_component = { 395 - .name = "img-i2s-out" 395 + .name = "img-i2s-out", 396 + .legacy_dai_naming = 1, 396 397 }; 397 398 398 399 static int img_i2s_out_dma_prepare_slave_config(struct snd_pcm_substream *st,
+2 -1
sound/soc/img/img-parallel-out.c
··· 201 201 }; 202 202 203 203 static const struct snd_soc_component_driver img_prl_out_component = { 204 - .name = "img-prl-out" 204 + .name = "img-prl-out", 205 + .legacy_dai_naming = 1, 205 206 }; 206 207 207 208 static int img_prl_out_probe(struct platform_device *pdev)
+2 -1
sound/soc/img/img-spdif-in.c
··· 711 711 }; 712 712 713 713 static const struct snd_soc_component_driver img_spdif_in_component = { 714 - .name = "img-spdif-in" 714 + .name = "img-spdif-in", 715 + .legacy_dai_naming = 1, 715 716 }; 716 717 717 718 static int img_spdif_in_probe(struct platform_device *pdev)
+2 -1
sound/soc/img/img-spdif-out.c
··· 316 316 }; 317 317 318 318 static const struct snd_soc_component_driver img_spdif_out_component = { 319 - .name = "img-spdif-out" 319 + .name = "img-spdif-out", 320 + .legacy_dai_naming = 1, 320 321 }; 321 322 322 323 static int img_spdif_out_probe(struct platform_device *pdev)
-1
sound/soc/img/pistachio-internal-dac.c
··· 138 138 .num_dapm_routes = ARRAY_SIZE(pistachio_internal_dac_routes), 139 139 .use_pmdown_time = 1, 140 140 .endianness = 1, 141 - .non_legacy_dai_naming = 1, 142 141 }; 143 142 144 143 static int pistachio_internal_dac_probe(struct platform_device *pdev)
-2
sound/soc/intel/avs/pcm.c
··· 846 846 .pcm_construct = avs_component_construct, 847 847 .module_get_upon_open = 1, /* increment refcount when a pcm is opened */ 848 848 .topology_name_prefix = "intel/avs", 849 - .non_legacy_dai_naming = true, 850 849 }; 851 850 852 851 static int avs_soc_component_register(struct device *dev, const char *name, ··· 1171 1172 .remove_order = SND_SOC_COMP_ORDER_EARLY, 1172 1173 .module_get_upon_open = 1, 1173 1174 .topology_name_prefix = "intel/avs", 1174 - .non_legacy_dai_naming = true, 1175 1175 }; 1176 1176 1177 1177 int avs_hda_platform_register(struct avs_dev *adev, const char *name)
+8 -6
sound/soc/intel/keembay/kmb_platform.c
··· 388 388 } 389 389 390 390 static const struct snd_soc_component_driver kmb_component = { 391 - .name = "kmb", 392 - .pcm_construct = kmb_platform_pcm_new, 393 - .open = kmb_pcm_open, 394 - .trigger = kmb_pcm_trigger, 395 - .pointer = kmb_pcm_pointer, 391 + .name = "kmb", 392 + .pcm_construct = kmb_platform_pcm_new, 393 + .open = kmb_pcm_open, 394 + .trigger = kmb_pcm_trigger, 395 + .pointer = kmb_pcm_pointer, 396 + .legacy_dai_naming = 1, 396 397 }; 397 398 398 399 static const struct snd_soc_component_driver kmb_component_dma = { 399 - .name = "kmb", 400 + .name = "kmb", 401 + .legacy_dai_naming = 1, 400 402 }; 401 403 402 404 static int kmb_probe(struct snd_soc_dai *cpu_dai)
+4 -3
sound/soc/jz4740/jz4740-i2s.c
··· 498 498 }; 499 499 500 500 static const struct snd_soc_component_driver jz4740_i2s_component = { 501 - .name = "jz4740-i2s", 502 - .suspend = jz4740_i2s_suspend, 503 - .resume = jz4740_i2s_resume, 501 + .name = "jz4740-i2s", 502 + .suspend = jz4740_i2s_suspend, 503 + .resume = jz4740_i2s_resume, 504 + .legacy_dai_naming = 1, 504 505 }; 505 506 506 507 static const struct of_device_id jz4740_of_matches[] = {
-1
sound/soc/meson/aiu-acodec-ctrl.c
··· 192 192 .num_dapm_routes = ARRAY_SIZE(aiu_acodec_ctrl_routes), 193 193 .of_xlate_dai_name = aiu_acodec_of_xlate_dai_name, 194 194 .endianness = 1, 195 - .non_legacy_dai_naming = 1, 196 195 #ifdef CONFIG_DEBUG_FS 197 196 .debugfs_prefix = "acodec", 198 197 #endif
-1
sound/soc/meson/aiu-codec-ctrl.c
··· 139 139 .num_dapm_routes = ARRAY_SIZE(aiu_hdmi_ctrl_routes), 140 140 .of_xlate_dai_name = aiu_hdmi_of_xlate_dai_name, 141 141 .endianness = 1, 142 - .non_legacy_dai_naming = 1, 143 142 #ifdef CONFIG_DEBUG_FS 144 143 .debugfs_prefix = "hdmi", 145 144 #endif
+3
sound/soc/meson/axg-frddr.c
··· 161 161 .hw_free = axg_fifo_pcm_hw_free, 162 162 .pointer = axg_fifo_pcm_pointer, 163 163 .trigger = axg_fifo_pcm_trigger, 164 + .legacy_dai_naming = 1, 164 165 }; 165 166 166 167 static const struct axg_fifo_match_data axg_frddr_match_data = { ··· 287 286 .hw_free = axg_fifo_pcm_hw_free, 288 287 .pointer = axg_fifo_pcm_pointer, 289 288 .trigger = axg_fifo_pcm_trigger, 289 + .legacy_dai_naming = 1, 290 290 }; 291 291 292 292 static const struct axg_fifo_match_data g12a_frddr_match_data = { ··· 358 356 .hw_free = axg_fifo_pcm_hw_free, 359 357 .pointer = axg_fifo_pcm_pointer, 360 358 .trigger = axg_fifo_pcm_trigger, 359 + .legacy_dai_naming = 1, 361 360 }; 362 361 363 362 static const struct axg_fifo_match_data sm1_frddr_match_data = {
+3 -1
sound/soc/meson/axg-pdm.c
··· 457 457 .remove = axg_pdm_dai_remove, 458 458 }; 459 459 460 - static const struct snd_soc_component_driver axg_pdm_component_drv = {}; 460 + static const struct snd_soc_component_driver axg_pdm_component_drv = { 461 + .legacy_dai_naming = 1, 462 + }; 461 463 462 464 static const struct regmap_config axg_pdm_regmap_cfg = { 463 465 .reg_bits = 32,
+1
sound/soc/meson/axg-spdifin.c
··· 390 390 static const struct snd_soc_component_driver axg_spdifin_component_drv = { 391 391 .controls = axg_spdifin_controls, 392 392 .num_controls = ARRAY_SIZE(axg_spdifin_controls), 393 + .legacy_dai_naming = 1, 393 394 }; 394 395 395 396 static const struct regmap_config axg_spdifin_regmap_cfg = {
+1
sound/soc/meson/axg-spdifout.c
··· 383 383 .dapm_routes = axg_spdifout_dapm_routes, 384 384 .num_dapm_routes = ARRAY_SIZE(axg_spdifout_dapm_routes), 385 385 .set_bias_level = axg_spdifout_set_bias_level, 386 + .legacy_dai_naming = 1, 386 387 }; 387 388 388 389 static const struct regmap_config axg_spdifout_regmap_cfg = {
+3
sound/soc/meson/axg-toddr.c
··· 182 182 .hw_free = axg_fifo_pcm_hw_free, 183 183 .pointer = axg_fifo_pcm_pointer, 184 184 .trigger = axg_fifo_pcm_trigger, 185 + .legacy_dai_naming = 1, 185 186 }; 186 187 187 188 static const struct axg_fifo_match_data axg_toddr_match_data = { ··· 243 242 .hw_free = axg_fifo_pcm_hw_free, 244 243 .pointer = axg_fifo_pcm_pointer, 245 244 .trigger = axg_fifo_pcm_trigger, 245 + .legacy_dai_naming = 1, 246 246 }; 247 247 248 248 static const struct axg_fifo_match_data g12a_toddr_match_data = { ··· 314 312 .hw_free = axg_fifo_pcm_hw_free, 315 313 .pointer = axg_fifo_pcm_pointer, 316 314 .trigger = axg_fifo_pcm_trigger, 315 + .legacy_dai_naming = 1, 317 316 }; 318 317 319 318 static const struct axg_fifo_match_data sm1_toddr_match_data = {
-2
sound/soc/meson/g12a-toacodec.c
··· 242 242 .dapm_routes = g12a_toacodec_routes, 243 243 .num_dapm_routes = ARRAY_SIZE(g12a_toacodec_routes), 244 244 .endianness = 1, 245 - .non_legacy_dai_naming = 1, 246 245 }; 247 246 248 247 static const struct snd_soc_component_driver sm1_toacodec_component_drv = { ··· 253 254 .dapm_routes = g12a_toacodec_routes, 254 255 .num_dapm_routes = ARRAY_SIZE(g12a_toacodec_routes), 255 256 .endianness = 1, 256 - .non_legacy_dai_naming = 1, 257 257 }; 258 258 259 259 static const struct regmap_config g12a_toacodec_regmap_cfg = {
-1
sound/soc/meson/g12a-tohdmitx.c
··· 226 226 .dapm_routes = g12a_tohdmitx_routes, 227 227 .num_dapm_routes = ARRAY_SIZE(g12a_tohdmitx_routes), 228 228 .endianness = 1, 229 - .non_legacy_dai_naming = 1, 230 229 }; 231 230 232 231 static const struct regmap_config g12a_tohdmitx_regmap_cfg = {
-1
sound/soc/meson/t9015.c
··· 234 234 .num_dapm_routes = ARRAY_SIZE(t9015_dapm_routes), 235 235 .suspend_bias_off = 1, 236 236 .endianness = 1, 237 - .non_legacy_dai_naming = 1, 238 237 }; 239 238 240 239 static const struct regmap_config t9015_regmap_config = {
+2 -1
sound/soc/mxs/mxs-saif.c
··· 663 663 }; 664 664 665 665 static const struct snd_soc_component_driver mxs_saif_component = { 666 - .name = "mxs-saif", 666 + .name = "mxs-saif", 667 + .legacy_dai_naming = 1, 667 668 }; 668 669 669 670 static irqreturn_t mxs_saif_irq(int irq, void *dev_id)
+5 -4
sound/soc/pxa/mmp-sspa.c
··· 456 456 } 457 457 458 458 static const struct snd_soc_component_driver mmp_sspa_component = { 459 - .name = "mmp-sspa", 460 - .mmap = mmp_pcm_mmap, 461 - .open = mmp_sspa_open, 462 - .close = mmp_sspa_close, 459 + .name = "mmp-sspa", 460 + .mmap = mmp_pcm_mmap, 461 + .open = mmp_sspa_open, 462 + .close = mmp_sspa_close, 463 + .legacy_dai_naming = 1, 463 464 }; 464 465 465 466 static int asoc_mmp_sspa_probe(struct platform_device *pdev)
+11 -10
sound/soc/pxa/pxa-ssp.c
··· 848 848 }; 849 849 850 850 static const struct snd_soc_component_driver pxa_ssp_component = { 851 - .name = "pxa-ssp", 852 - .pcm_construct = pxa2xx_soc_pcm_new, 853 - .open = pxa2xx_soc_pcm_open, 854 - .close = pxa2xx_soc_pcm_close, 855 - .hw_params = pxa2xx_soc_pcm_hw_params, 856 - .prepare = pxa2xx_soc_pcm_prepare, 857 - .trigger = pxa2xx_soc_pcm_trigger, 858 - .pointer = pxa2xx_soc_pcm_pointer, 859 - .suspend = pxa_ssp_suspend, 860 - .resume = pxa_ssp_resume, 851 + .name = "pxa-ssp", 852 + .pcm_construct = pxa2xx_soc_pcm_new, 853 + .open = pxa2xx_soc_pcm_open, 854 + .close = pxa2xx_soc_pcm_close, 855 + .hw_params = pxa2xx_soc_pcm_hw_params, 856 + .prepare = pxa2xx_soc_pcm_prepare, 857 + .trigger = pxa2xx_soc_pcm_trigger, 858 + .pointer = pxa2xx_soc_pcm_pointer, 859 + .suspend = pxa_ssp_suspend, 860 + .resume = pxa_ssp_resume, 861 + .legacy_dai_naming = 1, 861 862 }; 862 863 863 864 #ifdef CONFIG_OF
+11 -10
sound/soc/pxa/pxa2xx-i2s.c
··· 355 355 }; 356 356 357 357 static const struct snd_soc_component_driver pxa_i2s_component = { 358 - .name = "pxa-i2s", 359 - .pcm_construct = pxa2xx_soc_pcm_new, 360 - .open = pxa2xx_soc_pcm_open, 361 - .close = pxa2xx_soc_pcm_close, 362 - .hw_params = pxa2xx_soc_pcm_hw_params, 363 - .prepare = pxa2xx_soc_pcm_prepare, 364 - .trigger = pxa2xx_soc_pcm_trigger, 365 - .pointer = pxa2xx_soc_pcm_pointer, 366 - .suspend = pxa2xx_soc_pcm_suspend, 367 - .resume = pxa2xx_soc_pcm_resume, 358 + .name = "pxa-i2s", 359 + .pcm_construct = pxa2xx_soc_pcm_new, 360 + .open = pxa2xx_soc_pcm_open, 361 + .close = pxa2xx_soc_pcm_close, 362 + .hw_params = pxa2xx_soc_pcm_hw_params, 363 + .prepare = pxa2xx_soc_pcm_prepare, 364 + .trigger = pxa2xx_soc_pcm_trigger, 365 + .pointer = pxa2xx_soc_pcm_pointer, 366 + .suspend = pxa2xx_soc_pcm_suspend, 367 + .resume = pxa2xx_soc_pcm_resume, 368 + .legacy_dai_naming = 1, 368 369 }; 369 370 370 371 static int pxa2xx_i2s_drv_probe(struct platform_device *pdev)
+1
sound/soc/qcom/lpass-cpu.c
··· 472 472 static const struct snd_soc_component_driver lpass_cpu_comp_driver = { 473 473 .name = "lpass-cpu", 474 474 .of_xlate_dai_name = asoc_qcom_of_xlate_dai_name, 475 + .legacy_dai_naming = 1, 475 476 }; 476 477 477 478 static bool lpass_cpu_regmap_writeable(struct device *dev, unsigned int reg)
+12 -11
sound/soc/qcom/qdsp6/q6asm-dai.c
··· 1205 1205 }; 1206 1206 1207 1207 static const struct snd_soc_component_driver q6asm_fe_dai_component = { 1208 - .name = DRV_NAME, 1209 - .open = q6asm_dai_open, 1210 - .hw_params = q6asm_dai_hw_params, 1211 - .close = q6asm_dai_close, 1212 - .prepare = q6asm_dai_prepare, 1213 - .trigger = q6asm_dai_trigger, 1214 - .pointer = q6asm_dai_pointer, 1215 - .pcm_construct = q6asm_dai_pcm_new, 1216 - .compress_ops = &q6asm_dai_compress_ops, 1217 - .dapm_widgets = q6asm_dapm_widgets, 1218 - .num_dapm_widgets = ARRAY_SIZE(q6asm_dapm_widgets), 1208 + .name = DRV_NAME, 1209 + .open = q6asm_dai_open, 1210 + .hw_params = q6asm_dai_hw_params, 1211 + .close = q6asm_dai_close, 1212 + .prepare = q6asm_dai_prepare, 1213 + .trigger = q6asm_dai_trigger, 1214 + .pointer = q6asm_dai_pointer, 1215 + .pcm_construct = q6asm_dai_pcm_new, 1216 + .compress_ops = &q6asm_dai_compress_ops, 1217 + .dapm_widgets = q6asm_dapm_widgets, 1218 + .num_dapm_widgets = ARRAY_SIZE(q6asm_dapm_widgets), 1219 + .legacy_dai_naming = 1, 1219 1220 }; 1220 1221 1221 1222 static struct snd_soc_dai_driver q6asm_fe_dais_template[] = {
+1
sound/soc/rockchip/rockchip_i2s.c
··· 561 561 562 562 static const struct snd_soc_component_driver rockchip_i2s_component = { 563 563 .name = DRV_NAME, 564 + .legacy_dai_naming = 1, 564 565 }; 565 566 566 567 static bool rockchip_i2s_wr_reg(struct device *dev, unsigned int reg)
+1
sound/soc/rockchip/rockchip_i2s_tdm.c
··· 1118 1118 1119 1119 static const struct snd_soc_component_driver rockchip_i2s_tdm_component = { 1120 1120 .name = DRV_NAME, 1121 + .legacy_dai_naming = 1, 1121 1122 }; 1122 1123 1123 1124 static bool rockchip_i2s_tdm_wr_reg(struct device *dev, unsigned int reg)
+1
sound/soc/rockchip/rockchip_pdm.c
··· 405 405 406 406 static const struct snd_soc_component_driver rockchip_pdm_component = { 407 407 .name = "rockchip-pdm", 408 + .legacy_dai_naming = 1, 408 409 }; 409 410 410 411 static int rockchip_pdm_runtime_suspend(struct device *dev)
+1
sound/soc/rockchip/rockchip_spdif.c
··· 225 225 226 226 static const struct snd_soc_component_driver rk_spdif_component = { 227 227 .name = "rockchip-spdif", 228 + .legacy_dai_naming = 1, 228 229 }; 229 230 230 231 static bool rk_spdif_wr_reg(struct device *dev, unsigned int reg)
-1
sound/soc/samsung/aries_wm8994.c
··· 432 432 .idle_bias_on = 1, 433 433 .use_pmdown_time = 1, 434 434 .endianness = 1, 435 - .non_legacy_dai_naming = 1, 436 435 }; 437 436 438 437 static struct snd_soc_dai_driver aries_ext_dai[] = {
+2
sound/soc/samsung/i2s.c
··· 1143 1143 1144 1144 .suspend = i2s_suspend, 1145 1145 .resume = i2s_resume, 1146 + 1147 + .legacy_dai_naming = 1, 1146 1148 }; 1147 1149 1148 1150 #define SAMSUNG_I2S_FMTS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \
+2 -1
sound/soc/samsung/pcm.c
··· 480 480 }; 481 481 482 482 static const struct snd_soc_component_driver s3c_pcm_component = { 483 - .name = "s3c-pcm", 483 + .name = "s3c-pcm", 484 + .legacy_dai_naming = 1, 484 485 }; 485 486 486 487 static int s3c_pcm_dev_probe(struct platform_device *pdev)
+4 -3
sound/soc/samsung/s3c2412-i2s.c
··· 192 192 }; 193 193 194 194 static const struct snd_soc_component_driver s3c2412_i2s_component = { 195 - .name = "s3c2412-i2s", 196 - .suspend = s3c2412_i2s_suspend, 197 - .resume = s3c2412_i2s_resume, 195 + .name = "s3c2412-i2s", 196 + .suspend = s3c2412_i2s_suspend, 197 + .resume = s3c2412_i2s_resume, 198 + .legacy_dai_naming = 1, 198 199 }; 199 200 200 201 static int s3c2412_iis_dev_probe(struct platform_device *pdev)
+4 -3
sound/soc/samsung/s3c24xx-i2s.c
··· 414 414 }; 415 415 416 416 static const struct snd_soc_component_driver s3c24xx_i2s_component = { 417 - .name = "s3c24xx-i2s", 418 - .suspend = s3c24xx_i2s_suspend, 419 - .resume = s3c24xx_i2s_resume, 417 + .name = "s3c24xx-i2s", 418 + .suspend = s3c24xx_i2s_suspend, 419 + .resume = s3c24xx_i2s_resume, 420 + .legacy_dai_naming = 1, 420 421 }; 421 422 422 423 static int s3c24xx_iis_dev_probe(struct platform_device *pdev)
+4 -3
sound/soc/samsung/spdif.c
··· 352 352 }; 353 353 354 354 static const struct snd_soc_component_driver samsung_spdif_component = { 355 - .name = "samsung-spdif", 356 - .suspend = spdif_suspend, 357 - .resume = spdif_resume, 355 + .name = "samsung-spdif", 356 + .suspend = spdif_suspend, 357 + .resume = spdif_resume, 358 + .legacy_dai_naming = 1, 358 359 }; 359 360 360 361 static int spdif_probe(struct platform_device *pdev)
+2 -1
sound/soc/sh/hac.c
··· 307 307 }; 308 308 309 309 static const struct snd_soc_component_driver sh4_hac_component = { 310 - .name = "sh4-hac", 310 + .name = "sh4-hac", 311 + .legacy_dai_naming = 1, 311 312 }; 312 313 313 314 static int hac_soc_platform_probe(struct platform_device *pdev)
+6 -5
sound/soc/sh/rcar/core.c
··· 1813 1813 * snd_soc_component 1814 1814 */ 1815 1815 static const struct snd_soc_component_driver rsnd_soc_component = { 1816 - .name = "rsnd", 1817 - .probe = rsnd_debugfs_probe, 1818 - .hw_params = rsnd_hw_params, 1819 - .hw_free = rsnd_hw_free, 1820 - .pointer = rsnd_pointer, 1816 + .name = "rsnd", 1817 + .probe = rsnd_debugfs_probe, 1818 + .hw_params = rsnd_hw_params, 1819 + .hw_free = rsnd_hw_free, 1820 + .pointer = rsnd_pointer, 1821 + .legacy_dai_naming = 1, 1821 1822 }; 1822 1823 1823 1824 static int rsnd_rdai_continuance_probe(struct rsnd_priv *priv,
+5 -4
sound/soc/sh/rz-ssi.c
··· 906 906 }; 907 907 908 908 static const struct snd_soc_component_driver rz_ssi_soc_component = { 909 - .name = "rz-ssi", 910 - .open = rz_ssi_pcm_open, 911 - .pointer = rz_ssi_pcm_pointer, 912 - .pcm_construct = rz_ssi_pcm_new, 909 + .name = "rz-ssi", 910 + .open = rz_ssi_pcm_open, 911 + .pointer = rz_ssi_pcm_pointer, 912 + .pcm_construct = rz_ssi_pcm_new, 913 + .legacy_dai_naming = 1, 913 914 }; 914 915 915 916 static int rz_ssi_probe(struct platform_device *pdev)
+9 -8
sound/soc/sh/siu_pcm.c
··· 540 540 } 541 541 542 542 const struct snd_soc_component_driver siu_component = { 543 - .name = DRV_NAME, 544 - .open = siu_pcm_open, 545 - .close = siu_pcm_close, 546 - .prepare = siu_pcm_prepare, 547 - .trigger = siu_pcm_trigger, 548 - .pointer = siu_pcm_pointer_dma, 549 - .pcm_construct = siu_pcm_new, 550 - .pcm_destruct = siu_pcm_free, 543 + .name = DRV_NAME, 544 + .open = siu_pcm_open, 545 + .close = siu_pcm_close, 546 + .prepare = siu_pcm_prepare, 547 + .trigger = siu_pcm_trigger, 548 + .pointer = siu_pcm_pointer_dma, 549 + .pcm_construct = siu_pcm_new, 550 + .pcm_destruct = siu_pcm_free, 551 + .legacy_dai_naming = 1, 551 552 }; 552 553 EXPORT_SYMBOL_GPL(siu_component);
+2 -1
sound/soc/sh/ssi.c
··· 377 377 }; 378 378 379 379 static const struct snd_soc_component_driver sh4_ssi_component = { 380 - .name = "sh4-ssi", 380 + .name = "sh4-ssi", 381 + .legacy_dai_naming = 1, 381 382 }; 382 383 383 384 static int sh4_soc_dai_probe(struct platform_device *pdev)
+1 -1
sound/soc/soc-core.c
··· 2488 2488 2489 2489 for (i = 0; i < count; i++) { 2490 2490 dai = snd_soc_register_dai(component, dai_drv + i, count == 1 && 2491 - !component->driver->non_legacy_dai_naming); 2491 + component->driver->legacy_dai_naming); 2492 2492 if (dai == NULL) { 2493 2493 ret = -ENOMEM; 2494 2494 goto err;
-3
sound/soc/soc-topology-test.c
··· 104 104 .name = "sound-soc-topology-test", 105 105 .probe = d_probe, 106 106 .remove = d_remove, 107 - .non_legacy_dai_naming = 1, 108 107 }; 109 108 110 109 /* ===== TOPOLOGY TEMPLATES ================================================= */ ··· 237 238 static const struct snd_soc_component_driver test_component_null_comp = { 238 239 .name = "sound-soc-topology-test", 239 240 .probe = d_probe_null_comp, 240 - .non_legacy_dai_naming = 1, 241 241 }; 242 242 243 243 static void snd_soc_tplg_test_load_with_null_comp(struct kunit *test) ··· 341 343 static const struct snd_soc_component_driver test_component_null_fw = { 342 344 .name = "sound-soc-topology-test", 343 345 .probe = d_probe_null_fw, 344 - .non_legacy_dai_naming = 1, 345 346 }; 346 347 347 348 static void snd_soc_tplg_test_load_with_null_fw(struct kunit *test)
-1
sound/soc/soc-utils.c
··· 141 141 .idle_bias_on = 1, 142 142 .use_pmdown_time = 1, 143 143 .endianness = 1, 144 - .non_legacy_dai_naming = 1, 145 144 }; 146 145 147 146 #define STUB_RATES SNDRV_PCM_RATE_8000_384000
+2
sound/soc/sof/pcm.c
··· 682 682 683 683 /* increment module refcount when a pcm is opened */ 684 684 pd->module_get_upon_open = 1; 685 + 686 + pd->legacy_dai_naming = 1; 685 687 }
+1
sound/soc/sof/sof-client-probes.c
··· 667 667 .name = "sof-probes-component", 668 668 .compress_ops = &sof_probes_compressed_ops, 669 669 .module_get_upon_open = 1, 670 + .legacy_dai_naming = 1, 670 671 }; 671 672 672 673 SND_SOC_DAILINK_DEF(dummy, DAILINK_COMP_ARRAY(COMP_DUMMY()));
+2 -1
sound/soc/spear/spdif_in.c
··· 172 172 }; 173 173 174 174 static const struct snd_soc_component_driver spdif_in_component = { 175 - .name = "spdif-in", 175 + .name = "spdif-in", 176 + .legacy_dai_naming = 1, 176 177 }; 177 178 178 179 static irqreturn_t spdif_in_irq(int irq, void *arg)
+2 -1
sound/soc/spear/spdif_out.c
··· 273 273 }; 274 274 275 275 static const struct snd_soc_component_driver spdif_out_component = { 276 - .name = "spdif-out", 276 + .name = "spdif-out", 277 + .legacy_dai_naming = 1, 277 278 }; 278 279 279 280 static int spdif_out_probe(struct platform_device *pdev)
+2 -1
sound/soc/sti/sti_uniperif.c
··· 376 376 static const struct snd_soc_component_driver sti_uniperiph_dai_component = { 377 377 .name = "sti_cpu_dai", 378 378 .suspend = sti_uniperiph_suspend, 379 - .resume = sti_uniperiph_resume 379 + .resume = sti_uniperiph_resume, 380 + .legacy_dai_naming = 1, 380 381 }; 381 382 382 383 static int sti_uniperiph_cpu_dai_of(struct device_node *node,
+1
sound/soc/stm/stm32_adfsdm.c
··· 149 149 150 150 static const struct snd_soc_component_driver stm32_adfsdm_dai_component = { 151 151 .name = "stm32_dfsdm_audio", 152 + .legacy_dai_naming = 1, 152 153 }; 153 154 154 155 static void stm32_memcpy_32to16(void *dest, const void *src, size_t n)
+1
sound/soc/stm/stm32_i2s.c
··· 978 978 979 979 static const struct snd_soc_component_driver stm32_i2s_component = { 980 980 .name = "stm32-i2s", 981 + .legacy_dai_naming = 1, 981 982 }; 982 983 983 984 static void stm32_i2s_dai_init(struct snd_soc_pcm_stream *stream,
+1
sound/soc/stm/stm32_sai_sub.c
··· 1336 1336 1337 1337 static const struct snd_soc_component_driver stm32_component = { 1338 1338 .name = "stm32-sai", 1339 + .legacy_dai_naming = 1, 1339 1340 }; 1340 1341 1341 1342 static const struct of_device_id stm32_sai_sub_ids[] = {
+1
sound/soc/stm/stm32_spdifrx.c
··· 888 888 889 889 static const struct snd_soc_component_driver stm32_spdifrx_component = { 890 890 .name = "stm32-spdifrx", 891 + .legacy_dai_naming = 1, 891 892 }; 892 893 893 894 static const struct snd_dmaengine_pcm_config stm32_spdifrx_pcm_config = {
+2 -5
sound/soc/sunxi/sun4i-codec.c
··· 881 881 .idle_bias_on = 1, 882 882 .use_pmdown_time = 1, 883 883 .endianness = 1, 884 - .non_legacy_dai_naming = 1, 885 884 }; 886 885 887 886 static const struct snd_soc_component_driver sun7i_codec_codec = { ··· 893 894 .idle_bias_on = 1, 894 895 .use_pmdown_time = 1, 895 896 .endianness = 1, 896 - .non_legacy_dai_naming = 1, 897 897 }; 898 898 899 899 /*** sun6i Codec ***/ ··· 1200 1202 .idle_bias_on = 1, 1201 1203 .use_pmdown_time = 1, 1202 1204 .endianness = 1, 1203 - .non_legacy_dai_naming = 1, 1204 1205 }; 1205 1206 1206 1207 /* sun8i A23 codec */ ··· 1227 1230 .idle_bias_on = 1, 1228 1231 .use_pmdown_time = 1, 1229 1232 .endianness = 1, 1230 - .non_legacy_dai_naming = 1, 1231 1233 }; 1232 1234 1233 1235 static const struct snd_soc_component_driver sun4i_codec_component = { 1234 - .name = "sun4i-codec", 1236 + .name = "sun4i-codec", 1237 + .legacy_dai_naming = 1, 1235 1238 }; 1236 1239 1237 1240 #define SUN4I_CODEC_RATES SNDRV_PCM_RATE_CONTINUOUS
+2 -1
sound/soc/sunxi/sun4i-i2s.c
··· 1125 1125 }; 1126 1126 1127 1127 static const struct snd_soc_component_driver sun4i_i2s_component = { 1128 - .name = "sun4i-dai", 1128 + .name = "sun4i-dai", 1129 + .legacy_dai_naming = 1, 1129 1130 }; 1130 1131 1131 1132 static bool sun4i_i2s_rd_reg(struct device *dev, unsigned int reg)
+2 -1
sound/soc/sunxi/sun4i-spdif.c
··· 583 583 MODULE_DEVICE_TABLE(of, sun4i_spdif_of_match); 584 584 585 585 static const struct snd_soc_component_driver sun4i_spdif_component = { 586 - .name = "sun4i-spdif", 586 + .name = "sun4i-spdif", 587 + .legacy_dai_naming = 1, 587 588 }; 588 589 589 590 static int sun4i_spdif_runtime_suspend(struct device *dev)
-1
sound/soc/sunxi/sun8i-codec.c
··· 1278 1278 .probe = sun8i_codec_component_probe, 1279 1279 .idle_bias_on = 1, 1280 1280 .endianness = 1, 1281 - .non_legacy_dai_naming = 1, 1282 1281 }; 1283 1282 1284 1283 static const struct regmap_config sun8i_codec_regmap_config = {
+2 -1
sound/soc/tegra/tegra20_ac97.c
··· 239 239 }; 240 240 241 241 static const struct snd_soc_component_driver tegra20_ac97_component = { 242 - .name = DRV_NAME, 242 + .name = DRV_NAME, 243 + .legacy_dai_naming = 1, 243 244 }; 244 245 245 246 static bool tegra20_ac97_wr_rd_reg(struct device *dev, unsigned int reg)
+2 -1
sound/soc/tegra/tegra20_i2s.c
··· 338 338 }; 339 339 340 340 static const struct snd_soc_component_driver tegra20_i2s_component = { 341 - .name = DRV_NAME, 341 + .name = DRV_NAME, 342 + .legacy_dai_naming = 1, 342 343 }; 343 344 344 345 static bool tegra20_i2s_wr_rd_reg(struct device *dev, unsigned int reg)
+1
sound/soc/tegra/tegra20_spdif.c
··· 264 264 265 265 static const struct snd_soc_component_driver tegra20_spdif_component = { 266 266 .name = "tegra20-spdif", 267 + .legacy_dai_naming = 1, 267 268 }; 268 269 269 270 static bool tegra20_spdif_wr_rd_reg(struct device *dev, unsigned int reg)
-1
sound/soc/tegra/tegra210_i2s.c
··· 803 803 .num_dapm_routes = ARRAY_SIZE(tegra210_i2s_routes), 804 804 .controls = tegra210_i2s_controls, 805 805 .num_controls = ARRAY_SIZE(tegra210_i2s_controls), 806 - .non_legacy_dai_naming = 1, 807 806 }; 808 807 809 808 static bool tegra210_i2s_wr_reg(struct device *dev, unsigned int reg)
+2 -1
sound/soc/tegra/tegra30_i2s.c
··· 331 331 }; 332 332 333 333 static const struct snd_soc_component_driver tegra30_i2s_component = { 334 - .name = DRV_NAME, 334 + .name = DRV_NAME, 335 + .legacy_dai_naming = 1, 335 336 }; 336 337 337 338 static bool tegra30_i2s_wr_rd_reg(struct device *dev, unsigned int reg)
+2 -1
sound/soc/ti/davinci-i2s.c
··· 640 640 }; 641 641 642 642 static const struct snd_soc_component_driver davinci_i2s_component = { 643 - .name = DRV_NAME, 643 + .name = DRV_NAME, 644 + .legacy_dai_naming = 1, 644 645 }; 645 646 646 647 static int davinci_i2s_probe(struct platform_device *pdev)
+2 -1
sound/soc/ti/davinci-mcasp.c
··· 1765 1765 }; 1766 1766 1767 1767 static const struct snd_soc_component_driver davinci_mcasp_component = { 1768 - .name = "davinci-mcasp", 1768 + .name = "davinci-mcasp", 1769 + .legacy_dai_naming = 1, 1769 1770 }; 1770 1771 1771 1772 /* Some HW specific values and defaults. The rest is filled in from DT. */
+2 -1
sound/soc/ti/davinci-vcif.c
··· 185 185 }; 186 186 187 187 static const struct snd_soc_component_driver davinci_vcif_component = { 188 - .name = "davinci-vcif", 188 + .name = "davinci-vcif", 189 + .legacy_dai_naming = 1, 189 190 }; 190 191 191 192 static int davinci_vcif_probe(struct platform_device *pdev)
+2 -1
sound/soc/ti/omap-dmic.c
··· 453 453 }; 454 454 455 455 static const struct snd_soc_component_driver omap_dmic_component = { 456 - .name = "omap-dmic", 456 + .name = "omap-dmic", 457 + .legacy_dai_naming = 1, 457 458 }; 458 459 459 460 static int asoc_dmic_probe(struct platform_device *pdev)
+1
sound/soc/ti/omap-hdmi.c
··· 275 275 276 276 static const struct snd_soc_component_driver omap_hdmi_component = { 277 277 .name = "omapdss_hdmi", 278 + .legacy_dai_naming = 1, 278 279 }; 279 280 280 281 static struct snd_soc_dai_driver omap5_hdmi_dai = {
+2 -1
sound/soc/ti/omap-mcbsp.c
··· 1317 1317 }; 1318 1318 1319 1319 static const struct snd_soc_component_driver omap_mcbsp_component = { 1320 - .name = "omap-mcbsp", 1320 + .name = "omap-mcbsp", 1321 + .legacy_dai_naming = 1, 1321 1322 }; 1322 1323 1323 1324 static struct omap_mcbsp_platform_data omap2420_pdata = {
+4 -3
sound/soc/ti/omap-mcpdm.c
··· 524 524 }; 525 525 526 526 static const struct snd_soc_component_driver omap_mcpdm_component = { 527 - .name = "omap-mcpdm", 528 - .suspend = omap_mcpdm_suspend, 529 - .resume = omap_mcpdm_resume, 527 + .name = "omap-mcpdm", 528 + .suspend = omap_mcpdm_suspend, 529 + .resume = omap_mcpdm_resume, 530 + .legacy_dai_naming = 1, 530 531 }; 531 532 532 533 void omap_mcpdm_configure_dn_offsets(struct snd_soc_pcm_runtime *rtd,
-1
sound/soc/uniphier/evea.c
··· 397 397 .idle_bias_on = 1, 398 398 .use_pmdown_time = 1, 399 399 .endianness = 1, 400 - .non_legacy_dai_naming = 1, 401 400 }; 402 401 403 402 static struct snd_soc_dai_driver soc_dai_evea[] = {
+2 -1
sound/soc/ux500/ux500_msp_dai.c
··· 729 729 }; 730 730 731 731 static const struct snd_soc_component_driver ux500_msp_component = { 732 - .name = "ux500-msp", 732 + .name = "ux500-msp", 733 + .legacy_dai_naming = 1, 733 734 }; 734 735 735 736
+8 -8
sound/soc/xilinx/xlnx_formatter_pcm.c
··· 575 575 } 576 576 577 577 static const struct snd_soc_component_driver xlnx_asoc_component = { 578 - .name = DRV_NAME, 579 - .set_sysclk = xlnx_formatter_set_sysclk, 580 - .open = xlnx_formatter_pcm_open, 581 - .close = xlnx_formatter_pcm_close, 582 - .hw_params = xlnx_formatter_pcm_hw_params, 583 - .trigger = xlnx_formatter_pcm_trigger, 584 - .pointer = xlnx_formatter_pcm_pointer, 585 - .pcm_construct = xlnx_formatter_pcm_new, 578 + .name = DRV_NAME, 579 + .set_sysclk = xlnx_formatter_set_sysclk, 580 + .open = xlnx_formatter_pcm_open, 581 + .close = xlnx_formatter_pcm_close, 582 + .hw_params = xlnx_formatter_pcm_hw_params, 583 + .trigger = xlnx_formatter_pcm_trigger, 584 + .pointer = xlnx_formatter_pcm_pointer, 585 + .pcm_construct = xlnx_formatter_pcm_new, 586 586 }; 587 587 588 588 static int xlnx_formatter_pcm_probe(struct platform_device *pdev)
+1
sound/soc/xilinx/xlnx_i2s.c
··· 158 158 159 159 static const struct snd_soc_component_driver xlnx_i2s_component = { 160 160 .name = DRV_NAME, 161 + .legacy_dai_naming = 1, 161 162 }; 162 163 163 164 static const struct of_device_id xlnx_i2s_of_match[] = {
+1
sound/soc/xilinx/xlnx_spdif.c
··· 226 226 227 227 static const struct snd_soc_component_driver xlnx_spdif_component = { 228 228 .name = "xlnx-spdif", 229 + .legacy_dai_naming = 1, 229 230 }; 230 231 231 232 static const struct of_device_id xlnx_spdif_of_match[] = {
+8 -7
sound/soc/xtensa/xtfpga-i2s.c
··· 475 475 } 476 476 477 477 static const struct snd_soc_component_driver xtfpga_i2s_component = { 478 - .name = DRV_NAME, 479 - .open = xtfpga_pcm_open, 480 - .close = xtfpga_pcm_close, 481 - .hw_params = xtfpga_pcm_hw_params, 482 - .trigger = xtfpga_pcm_trigger, 483 - .pointer = xtfpga_pcm_pointer, 484 - .pcm_construct = xtfpga_pcm_new, 478 + .name = DRV_NAME, 479 + .open = xtfpga_pcm_open, 480 + .close = xtfpga_pcm_close, 481 + .hw_params = xtfpga_pcm_hw_params, 482 + .trigger = xtfpga_pcm_trigger, 483 + .pointer = xtfpga_pcm_pointer, 484 + .pcm_construct = xtfpga_pcm_new, 485 + .legacy_dai_naming = 1, 485 486 }; 486 487 487 488 static const struct snd_soc_dai_ops xtfpga_i2s_dai_ops = {