diff options
Diffstat (limited to 'drivers/base/base.h')
| -rw-r--r-- | drivers/base/base.h | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/base/base.h b/drivers/base/base.h index 2cbc6774f4c..251c5d30f96 100644 --- a/drivers/base/base.h +++ b/drivers/base/base.h @@ -63,8 +63,6 @@ struct driver_private {   *	binding of drivers which were unable to get all the resources needed by   *	the device; typically because it depends on another driver getting   *	probed first. - * @driver_data - private pointer for driver specific info.  Will turn into a - * list soon.   * @device - pointer back to the struct class that this structure is   * associated with.   * @@ -76,7 +74,6 @@ struct device_private {  	struct klist_node knode_driver;  	struct klist_node knode_bus;  	struct list_head deferred_probe; -	void *driver_data;  	struct device *device;  };  #define to_device_private_parent(obj)	\ @@ -100,6 +97,7 @@ static inline int hypervisor_init(void) { return 0; }  #endif  extern int platform_bus_init(void);  extern void cpu_dev_init(void); +extern void container_dev_init(void);  struct kobject *virtual_device_parent(struct device *dev);  | 
