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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 3f33f17f556c..e19e40a3dcbe 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -131,7 +131,7 @@ struct device_driver {
131 void (*shutdown) (struct device *dev); 131 void (*shutdown) (struct device *dev);
132 int (*suspend) (struct device *dev, pm_message_t state); 132 int (*suspend) (struct device *dev, pm_message_t state);
133 int (*resume) (struct device *dev); 133 int (*resume) (struct device *dev);
134 struct attribute_group **groups; 134 const struct attribute_group **groups;
135 135
136 const struct dev_pm_ops *pm; 136 const struct dev_pm_ops *pm;
137 137
@@ -288,7 +288,7 @@ extern void class_destroy(struct class *cls);
288 */ 288 */
289struct device_type { 289struct device_type {
290 const char *name; 290 const char *name;
291 struct attribute_group **groups; 291 const struct attribute_group **groups;
292 int (*uevent)(struct device *dev, struct kobj_uevent_env *env); 292 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
293 char *(*nodename)(struct device *dev); 293 char *(*nodename)(struct device *dev);
294 void (*release)(struct device *dev); 294 void (*release)(struct device *dev);
@@ -412,7 +412,7 @@ struct device {
412 412
413 struct klist_node knode_class; 413 struct klist_node knode_class;
414 struct class *class; 414 struct class *class;
415 struct attribute_group **groups; /* optional groups */ 415 const struct attribute_group **groups; /* optional groups */
416 416
417 void (*release)(struct device *dev); 417 void (*release)(struct device *dev);
418}; 418};