diff options
| author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-12-16 15:23:36 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:44:32 -0500 |
| commit | 2831fe6f9cc4e16c103504ee09a47a084297c0f3 (patch) | |
| tree | 36869b2a4ad9dce0fb0812f44355233e907afa95 /include/linux | |
| parent | 2e5ba26a483218b51b7b327fb235b348890aea15 (diff) | |
driver core: create a private portion of struct device
This is to be used to move things out of struct device that no code
outside of the driver core should ever touch.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 4e14fad4143..d6d34084fd3 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 | ||
| 30 | struct device; | 30 | struct device; |
| 31 | struct device_private; | ||
| 31 | struct device_driver; | 32 | struct device_driver; |
| 32 | struct driver_private; | 33 | struct driver_private; |
| 33 | struct class; | 34 | struct 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; |
