Lines Matching refs:adrv
67 struct apr_driver *adrv = NULL; in apr_callback() local
112 adrv = to_apr_driver(svc->dev.driver); in apr_callback()
115 if (!adrv) { in apr_callback()
130 adrv->callback(svc, &resp); in apr_callback()
138 struct apr_driver *adrv = to_apr_driver(drv); in apr_device_match() local
139 const struct apr_device_id *id = adrv->id_table; in apr_device_match()
161 struct apr_driver *adrv = to_apr_driver(dev->driver); in apr_device_probe() local
163 return adrv->probe(adev); in apr_device_probe()
169 struct apr_driver *adrv; in apr_device_remove() local
173 adrv = to_apr_driver(dev->driver); in apr_device_remove()
174 if (adrv->remove) in apr_device_remove()
175 adrv->remove(adev); in apr_device_remove()