Lines Matching refs:adrv
537 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()
610 err = adrv->probe(core); in bcma_device_probe()
620 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver, in bcma_device_remove() local
623 if (adrv->remove) in bcma_device_remove()
624 adrv->remove(core); in bcma_device_remove()