aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-06-24 13:06:31 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:50:47 -0400
commita4dbd6740df0872cdf0a86841f75beec8381964d (patch)
tree1093687845d89f8397d61e7df1ad8546a5a25225 /include/linux/device.h
parent5b2ea2f10dbb2fa91d8033993000f8664309395f (diff)
driver model: constify attribute groups
Let attribute group vectors be declared "const". We'd like to let most attribute metadata live in read-only sections... this is a start. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
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 3f33f17f556..e19e40a3dcb 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};