Lines Matching defs:drvs
20 struct snd_soc_dai_driver *drvs;
24 drvs = devm_kcalloc(dev, pcm_count, sizeof(*drvs), GFP_KERNEL);
25 if (!drvs)
35 drvs[i].id = i;
36 drvs[i].name = pcm->name;
37 drvs[i].ops = &snd_soc_hda_codec_dai_ops;
40 stream = &drvs[i].playback;
59 stream = &drvs[i].capture;
77 *drivers = drvs;
83 struct snd_soc_dai_driver *drvs = NULL;
93 ret = hda_codec_create_dais(codec, pcm_count, &drvs);
102 dai = snd_soc_register_dai(component, drvs, false);
116 drvs++;