Lines Matching refs:drv
721 static inline void i2o_driver_notify_controller_add(struct i2o_driver *drv, in i2o_driver_notify_controller_add() argument
724 if (drv->notify_controller_add) in i2o_driver_notify_controller_add()
725 drv->notify_controller_add(c); in i2o_driver_notify_controller_add()
735 static inline void i2o_driver_notify_controller_remove(struct i2o_driver *drv, in i2o_driver_notify_controller_remove() argument
738 if (drv->notify_controller_remove) in i2o_driver_notify_controller_remove()
739 drv->notify_controller_remove(c); in i2o_driver_notify_controller_remove()
749 static inline void i2o_driver_notify_device_add(struct i2o_driver *drv, in i2o_driver_notify_device_add() argument
752 if (drv->notify_device_add) in i2o_driver_notify_device_add()
753 drv->notify_device_add(i2o_dev); in i2o_driver_notify_device_add()
763 static inline void i2o_driver_notify_device_remove(struct i2o_driver *drv, in i2o_driver_notify_device_remove() argument
766 if (drv->notify_device_remove) in i2o_driver_notify_device_remove()
767 drv->notify_device_remove(i2o_dev); in i2o_driver_notify_device_remove()
783 #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver) argument