Lines Matching refs:adrv
572 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_suspend() local
573 if (adrv->suspend) in bcma_bus_suspend()
574 adrv->suspend(core); in bcma_bus_suspend()
593 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_resume() local
594 if (adrv->resume) in bcma_bus_resume()
595 adrv->resume(core); in bcma_bus_resume()
622 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv); in bcma_bus_match() local
626 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) { in bcma_bus_match()
639 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver, in bcma_device_probe() local
643 if (adrv->probe) in bcma_device_probe()
644 err = adrv->probe(core); in bcma_device_probe()
652 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver, in bcma_device_remove() local
655 if (adrv->remove) in bcma_device_remove()
656 adrv->remove(core); in bcma_device_remove()