Home
last modified time | relevance | path

Searched refs:adrv (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.15/sound/ac97/
Dbus.c39 static int ac97_unbound_ctrl_write(struct ac97_controller *adrv, int slot, in ac97_unbound_ctrl_write() argument
45 static int ac97_unbound_ctrl_read(struct ac97_controller *adrv, int slot, in ac97_unbound_ctrl_read() argument
133 unsigned int snd_ac97_bus_scan_one(struct ac97_controller *adrv, in snd_ac97_bus_scan_one() argument
139 ret = adrv->ops->read(adrv, codec_num, AC97_VENDOR_ID1); in snd_ac97_bus_scan_one()
144 ret = adrv->ops->read(adrv, codec_num, AC97_VENDOR_ID2); in snd_ac97_bus_scan_one()
149 dev_dbg(&adrv->adap, "%s(codec_num=%u): vendor_id=0x%08x\n", in snd_ac97_bus_scan_one()
476 struct ac97_codec_driver *adrv = to_ac97_driver(drv); in ac97_bus_match() local
477 const struct ac97_id *id = adrv->id_table; in ac97_bus_match()
494 struct ac97_codec_driver *adrv = to_ac97_driver(dev->driver); in ac97_bus_probe() local
505 ret = adrv->probe(adev); in ac97_bus_probe()
[all …]
Dac97_core.h6 unsigned int snd_ac97_bus_scan_one(struct ac97_controller *adrv,
/Linux-v5.15/include/sound/ac97/
Dcontroller.h55 void (*reset)(struct ac97_controller *adrv);
56 void (*warm_reset)(struct ac97_controller *adrv);
57 int (*write)(struct ac97_controller *adrv, int slot,
59 int (*read)(struct ac97_controller *adrv, int slot, unsigned short reg);
/Linux-v5.15/drivers/soc/qcom/
Dapr.c108 struct apr_driver *adrv = NULL; in apr_do_rx_callback() local
149 adrv = to_apr_driver(svc->dev.driver); in apr_do_rx_callback()
152 if (!adrv) { in apr_do_rx_callback()
167 adrv->callback(svc, &resp); in apr_do_rx_callback()
192 struct apr_driver *adrv = to_apr_driver(drv); in apr_device_match() local
193 const struct apr_device_id *id = adrv->id_table; in apr_device_match()
215 struct apr_driver *adrv = to_apr_driver(dev->driver); in apr_device_probe() local
217 return adrv->probe(adev); in apr_device_probe()
223 struct apr_driver *adrv; in apr_device_remove() local
227 adrv = to_apr_driver(dev->driver); in apr_device_remove()
[all …]
/Linux-v5.15/drivers/bcma/
Dmain.c537 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_suspend() local
538 if (adrv->suspend) in bcma_bus_suspend()
539 adrv->suspend(core); in bcma_bus_suspend()
558 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_resume() local
559 if (adrv->resume) in bcma_bus_resume()
560 adrv->resume(core); in bcma_bus_resume()
587 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_match() local
591 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) { in bcma_bus_match()
604 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver, in bcma_device_probe() local
609 if (adrv->probe) in bcma_device_probe()
[all …]
/Linux-v5.15/drivers/net/ethernet/mellanox/mlx5/core/
Ddev.c339 struct auxiliary_driver *adrv; in mlx5_attach_device() local
379 adrv = to_auxiliary_drv(adev->dev.driver); in mlx5_attach_device()
381 if (adrv->resume) in mlx5_attach_device()
382 ret = adrv->resume(adev); in mlx5_attach_device()
399 struct auxiliary_driver *adrv; in mlx5_detach_device() local
421 adrv = to_auxiliary_drv(adev->dev.driver); in mlx5_detach_device()
423 if (adrv->suspend) { in mlx5_detach_device()
424 adrv->suspend(adev, pm); in mlx5_detach_device()
/Linux-v5.15/sound/soc/pxa/
Dpxa2xx-ac97.c28 static void pxa2xx_ac97_warm_reset(struct ac97_controller *adrv) in pxa2xx_ac97_warm_reset() argument
35 static void pxa2xx_ac97_cold_reset(struct ac97_controller *adrv) in pxa2xx_ac97_cold_reset() argument
42 static int pxa2xx_ac97_read_actrl(struct ac97_controller *adrv, int slot, in pxa2xx_ac97_read_actrl() argument
48 static int pxa2xx_ac97_write_actrl(struct ac97_controller *adrv, int slot, in pxa2xx_ac97_write_actrl() argument
/Linux-v5.15/drivers/infiniband/hw/irdma/
Dmain.c321 .adrv = {
340 ret = auxiliary_driver_register(&irdma_auxiliary_drv.adrv); in irdma_init_module()
356 auxiliary_driver_unregister(&irdma_auxiliary_drv.adrv); in irdma_exit_module()
/Linux-v5.15/include/linux/net/intel/
Diidc.h91 struct auxiliary_driver adrv; member
/Linux-v5.15/drivers/staging/fieldbus/anybuss/
Dhost.c1171 struct anybuss_client_driver *adrv = in anybus_bus_match() local
1176 return adrv->anybus_id == be16_to_cpu(adev->anybus_id); in anybus_bus_match()
1181 struct anybuss_client_driver *adrv = in anybus_bus_probe() local
1186 return adrv->probe(adev); in anybus_bus_probe()
1191 struct anybuss_client_driver *adrv = in anybus_bus_remove() local
1194 if (adrv->remove) in anybus_bus_remove()
1195 adrv->remove(to_anybuss_client(dev)); in anybus_bus_remove()
/Linux-v5.15/drivers/net/ethernet/intel/ice/
Dice_idc.c25 adrv.driver); in ice_get_auxiliary_drv()