Home
last modified time | relevance | path

Searched refs:aux_dev (Results 1 – 12 of 12) sorted by relevance

/Linux-v4.19/drivers/gpu/drm/
Ddrm_dp_aux_dev.c59 struct drm_dp_aux_dev *aux_dev = NULL; in drm_dp_aux_dev_get_by_minor() local
62 aux_dev = idr_find(&aux_idr, index); in drm_dp_aux_dev_get_by_minor()
63 if (!kref_get_unless_zero(&aux_dev->refcount)) in drm_dp_aux_dev_get_by_minor()
64 aux_dev = NULL; in drm_dp_aux_dev_get_by_minor()
67 return aux_dev; in drm_dp_aux_dev_get_by_minor()
72 struct drm_dp_aux_dev *aux_dev; in alloc_drm_dp_aux_dev() local
75 aux_dev = kzalloc(sizeof(*aux_dev), GFP_KERNEL); in alloc_drm_dp_aux_dev()
76 if (!aux_dev) in alloc_drm_dp_aux_dev()
78 aux_dev->aux = aux; in alloc_drm_dp_aux_dev()
79 atomic_set(&aux_dev->usecount, 1); in alloc_drm_dp_aux_dev()
[all …]
/Linux-v4.19/sound/soc/sunxi/
Dsun4i-codec.c1297 static struct snd_soc_aux_dev aux_dev = { variable
1310 aux_dev.codec_of_node = of_parse_phandle(dev->of_node, in sun8i_a23_codec_create_card()
1313 if (!aux_dev.codec_of_node) { in sun8i_a23_codec_create_card()
1328 card->aux_dev = &aux_dev; in sun8i_a23_codec_create_card()
1348 aux_dev.codec_of_node = of_parse_phandle(dev->of_node, in sun8i_h3_codec_create_card()
1351 if (!aux_dev.codec_of_node) { in sun8i_h3_codec_create_card()
1366 card->aux_dev = &aux_dev; in sun8i_h3_codec_create_card()
1386 aux_dev.codec_of_node = of_parse_phandle(dev->of_node, in sun8i_v3s_codec_create_card()
1389 if (!aux_dev.codec_of_node) { in sun8i_v3s_codec_create_card()
1404 card->aux_dev = &aux_dev; in sun8i_v3s_codec_create_card()
/Linux-v4.19/sound/soc/generic/
Dsimple-card.c268 card->aux_dev = devm_kcalloc(dev, in asoc_simple_card_parse_aux_devs()
269 n, sizeof(*card->aux_dev), GFP_KERNEL); in asoc_simple_card_parse_aux_devs()
270 if (!card->aux_dev) in asoc_simple_card_parse_aux_devs()
277 card->aux_dev[i].codec_of_node = aux_node; in asoc_simple_card_parse_aux_devs()
/Linux-v4.19/sound/soc/samsung/
Dtm2_wm5110.c478 .aux_dev = &tm2_speaker_amp_dev,
521 card->aux_dev[0].codec_of_node = of_parse_phandle(dev->of_node, in tm2_probe()
523 if (!card->aux_dev[0].codec_of_node) { in tm2_probe()
612 of_node_put(card->aux_dev[0].codec_of_node); in tm2_probe()
Dspeyside.c306 .aux_dev = speyside_aux_dev,
Dneo1973_wm8753.c323 .aux_dev = neo1973_aux_devs,
/Linux-v4.19/sound/soc/intel/boards/
Dcht_bsw_max98090_ti.c378 .aux_dev = &cht_max98090_headset_dev,
401 snd_soc_card_cht.aux_dev = NULL; in snd_cht_mc_probe()
/Linux-v4.19/sound/soc/meson/
Daxg-card.c111 if (card->aux_dev) { in axg_card_clean_references()
113 of_node_put(card->aux_dev[i].codec_of_node); in axg_card_clean_references()
143 card->aux_dev = aux; in axg_card_add_aux_devices()
/Linux-v4.19/sound/soc/rockchip/
Drockchip_max98090.c148 .aux_dev = &rk_98090_headset_dev,
/Linux-v4.19/sound/soc/
Dsoc-core.c1589 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num]; in soc_bind_aux_dev() local
1594 if (aux_dev->codec_of_node || aux_dev->codec_name) { in soc_bind_aux_dev()
1596 name = aux_dev->codec_name; in soc_bind_aux_dev()
1597 codec_of_node = aux_dev->codec_of_node; in soc_bind_aux_dev()
1604 } else if (aux_dev->name) { in soc_bind_aux_dev()
1606 name = aux_dev->name; in soc_bind_aux_dev()
1615 component->init = aux_dev->init; in soc_bind_aux_dev()
/Linux-v4.19/sound/soc/omap/
Drx51.c358 .aux_dev = rx51_aux_dev,
/Linux-v4.19/include/sound/
Dsoc.h1070 struct snd_soc_aux_dev *aux_dev; member