diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/device.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 4a7c4a84afee..851b85c7101e 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/pm.h> | 25 | #include <linux/pm.h> |
26 | #include <linux/atomic.h> | 26 | #include <linux/atomic.h> |
27 | #include <linux/ratelimit.h> | 27 | #include <linux/ratelimit.h> |
28 | #include <linux/uidgid.h> | ||
28 | #include <asm/device.h> | 29 | #include <asm/device.h> |
29 | 30 | ||
30 | struct device; | 31 | struct device; |
@@ -465,7 +466,8 @@ struct device_type { | |||
465 | const char *name; | 466 | const char *name; |
466 | const struct attribute_group **groups; | 467 | const struct attribute_group **groups; |
467 | int (*uevent)(struct device *dev, struct kobj_uevent_env *env); | 468 | int (*uevent)(struct device *dev, struct kobj_uevent_env *env); |
468 | char *(*devnode)(struct device *dev, umode_t *mode); | 469 | char *(*devnode)(struct device *dev, umode_t *mode, |
470 | uid_t *uid, gid_t *gid); | ||
469 | void (*release)(struct device *dev); | 471 | void (*release)(struct device *dev); |
470 | 472 | ||
471 | const struct dev_pm_ops *pm; | 473 | const struct dev_pm_ops *pm; |
@@ -843,7 +845,8 @@ extern int device_rename(struct device *dev, const char *new_name); | |||
843 | extern int device_move(struct device *dev, struct device *new_parent, | 845 | extern int device_move(struct device *dev, struct device *new_parent, |
844 | enum dpm_order dpm_order); | 846 | enum dpm_order dpm_order); |
845 | extern const char *device_get_devnode(struct device *dev, | 847 | extern const char *device_get_devnode(struct device *dev, |
846 | umode_t *mode, const char **tmp); | 848 | umode_t *mode, uid_t *uid, gid_t *gid, |
849 | const char **tmp); | ||
847 | extern void *dev_get_drvdata(const struct device *dev); | 850 | extern void *dev_get_drvdata(const struct device *dev); |
848 | extern int dev_set_drvdata(struct device *dev, void *data); | 851 | extern int dev_set_drvdata(struct device *dev, void *data); |
849 | 852 | ||