Lines Matching refs:sbdrv
33 struct slim_driver *sbdrv = to_slim_driver(drv); in slim_device_match() local
35 return !!slim_match(sbdrv->id_table, sbdev); in slim_device_match()
41 struct slim_driver *sbdrv = to_slim_driver(dev->driver); in slim_device_probe() local
43 return sbdrv->probe(sbdev); in slim_device_probe()
49 struct slim_driver *sbdrv; in slim_device_remove() local
52 sbdrv = to_slim_driver(dev->driver); in slim_device_remove()
53 if (sbdrv->remove) in slim_device_remove()
54 sbdrv->remove(sbdev); in slim_device_remove()
268 struct slim_driver *sbdrv; in slim_device_update_status() local
277 sbdrv = to_slim_driver(sbdev->dev.driver); in slim_device_update_status()
278 if (sbdrv->device_status) in slim_device_update_status()
279 sbdrv->device_status(sbdev, sbdev->status); in slim_device_update_status()