diff options
Diffstat (limited to 'include/linux/device.h')
| -rw-r--r-- | include/linux/device.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 161d96241b1..5083bccae96 100644 --- a/include/linux/device.h +++ b/include/linux/device.h @@ -36,6 +36,7 @@ struct subsys_private;  struct bus_type;  struct device_node;  struct iommu_ops; +struct iommu_group;  struct bus_attribute {  	struct attribute	attr; @@ -687,6 +688,7 @@ struct device {  	const struct attribute_group **groups;	/* optional groups */  	void	(*release)(struct device *dev); +	struct iommu_group	*iommu_group;  };  /* Get the wakeup routines, which depend on struct device */ @@ -865,8 +867,6 @@ extern int (*platform_notify_remove)(struct device *dev);  extern struct device *get_device(struct device *dev);  extern void put_device(struct device *dev); -extern void wait_for_device_probe(void); -  #ifdef CONFIG_DEVTMPFS  extern int devtmpfs_create_node(struct device *dev);  extern int devtmpfs_delete_node(struct device *dev);  |