aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 4e14fad41430..d6d34084fd37 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -28,6 +28,7 @@
28#define BUS_ID_SIZE 20 28#define BUS_ID_SIZE 20
29 29
30struct device; 30struct device;
31struct device_private;
31struct device_driver; 32struct device_driver;
32struct driver_private; 33struct driver_private;
33struct class; 34struct class;
@@ -371,6 +372,8 @@ struct device {
371 struct klist_node knode_bus; 372 struct klist_node knode_bus;
372 struct device *parent; 373 struct device *parent;
373 374
375 struct device_private *p;
376
374 struct kobject kobj; 377 struct kobject kobj;
375 char bus_id[BUS_ID_SIZE]; /* position on parent bus */ 378 char bus_id[BUS_ID_SIZE]; /* position on parent bus */
376 unsigned uevent_suppress:1; 379 unsigned uevent_suppress:1;