Lines Matching refs:adrv
540 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_suspend() local
541 if (adrv->suspend) in bcma_bus_suspend()
542 adrv->suspend(core); in bcma_bus_suspend()
561 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_resume() local
562 if (adrv->resume) in bcma_bus_resume()
563 adrv->resume(core); in bcma_bus_resume()
590 const struct bcma_driver *adrv = container_of_const(drv, struct bcma_driver, drv); in bcma_bus_match() local
594 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) { in bcma_bus_match()
607 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver, in bcma_device_probe() local
612 if (adrv->probe) in bcma_device_probe()
613 err = adrv->probe(core); in bcma_device_probe()
623 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver, in bcma_device_remove() local
626 if (adrv->remove) in bcma_device_remove()
627 adrv->remove(core); in bcma_device_remove()