diff options
Diffstat (limited to 'include/linux/device.h')
| -rw-r--r-- | include/linux/device.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index c330b75c6c57..6717adee33f0 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -915,6 +915,8 @@ struct dev_links_info { | |||
| 915 | * This identifies the device type and carries type-specific | 915 | * This identifies the device type and carries type-specific |
| 916 | * information. | 916 | * information. |
| 917 | * @mutex: Mutex to synchronize calls to its driver. | 917 | * @mutex: Mutex to synchronize calls to its driver. |
| 918 | * @lockdep_mutex: An optional debug lock that a subsystem can use as a | ||
| 919 | * peer lock to gain localized lockdep coverage of the device_lock. | ||
| 918 | * @bus: Type of bus device is on. | 920 | * @bus: Type of bus device is on. |
| 919 | * @driver: Which driver has allocated this | 921 | * @driver: Which driver has allocated this |
| 920 | * @platform_data: Platform data specific to the device. | 922 | * @platform_data: Platform data specific to the device. |
| @@ -998,6 +1000,9 @@ struct device { | |||
| 998 | core doesn't touch it */ | 1000 | core doesn't touch it */ |
| 999 | void *driver_data; /* Driver data, set and get with | 1001 | void *driver_data; /* Driver data, set and get with |
| 1000 | dev_set_drvdata/dev_get_drvdata */ | 1002 | dev_set_drvdata/dev_get_drvdata */ |
| 1003 | #ifdef CONFIG_PROVE_LOCKING | ||
| 1004 | struct mutex lockdep_mutex; | ||
| 1005 | #endif | ||
| 1001 | struct mutex mutex; /* mutex to synchronize calls to | 1006 | struct mutex mutex; /* mutex to synchronize calls to |
| 1002 | * its driver. | 1007 | * its driver. |
| 1003 | */ | 1008 | */ |
| @@ -1383,6 +1388,7 @@ extern int (*platform_notify_remove)(struct device *dev); | |||
| 1383 | */ | 1388 | */ |
| 1384 | extern struct device *get_device(struct device *dev); | 1389 | extern struct device *get_device(struct device *dev); |
| 1385 | extern void put_device(struct device *dev); | 1390 | extern void put_device(struct device *dev); |
| 1391 | extern bool kill_device(struct device *dev); | ||
| 1386 | 1392 | ||
| 1387 | #ifdef CONFIG_DEVTMPFS | 1393 | #ifdef CONFIG_DEVTMPFS |
| 1388 | extern int devtmpfs_create_node(struct device *dev); | 1394 | extern int devtmpfs_create_node(struct device *dev); |
