Lines Matching refs:adrv
106 struct apr_driver *adrv = NULL; in apr_do_rx_callback() local
147 adrv = to_apr_driver(svc->dev.driver); in apr_do_rx_callback()
150 if (!adrv) { in apr_do_rx_callback()
165 adrv->callback(svc, &resp); in apr_do_rx_callback()
190 struct apr_driver *adrv = to_apr_driver(drv); in apr_device_match() local
191 const struct apr_device_id *id = adrv->id_table; in apr_device_match()
213 struct apr_driver *adrv = to_apr_driver(dev->driver); in apr_device_probe() local
215 return adrv->probe(adev); in apr_device_probe()
221 struct apr_driver *adrv; in apr_device_remove() local
225 adrv = to_apr_driver(dev->driver); in apr_device_remove()
226 if (adrv->remove) in apr_device_remove()
227 adrv->remove(adev); in apr_device_remove()