Lines Matching defs:comp_drv
349 struct snd_soc_component_driver *comp_drv;
351 comp_drv = devm_kzalloc(&hdev->dev, sizeof(*comp_drv), GFP_KERNEL);
352 if (!comp_drv)
359 comp_drv->name = dev_name(&hdev->dev);
360 comp_drv->probe = hda_codec_probe;
361 comp_drv->remove = hda_codec_remove;
362 comp_drv->idle_bias_on = false;
364 comp_drv->dapm_widgets = hda_dapm_widgets;
365 comp_drv->num_dapm_widgets = ARRAY_SIZE(hda_dapm_widgets);
366 comp_drv->dapm_routes = hda_dapm_routes;
367 comp_drv->num_dapm_routes = ARRAY_SIZE(hda_dapm_routes);
370 return snd_soc_register_component(&hdev->dev, comp_drv, &card_binder_dai, 1);