aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Ojeda Sandonis <maxextreme@gmail.com>2006-09-13 09:34:05 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2006-09-26 00:08:36 -0400
commitab7d7371acc68fa9130b079a9ba879191202035f (patch)
tree9ebd5fbcdb8f1ddffc022f573acc0690c11a8c83
parent5cbe5f8a5897470698222ac9924429056e57d84c (diff)
Driver core: add const to class_create
Adds const to class_create second parameter, because: struct class { const char * name; /*...*/ } Signed-off-by: Miguel Ojeda Sandonis <maxextreme@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/base/class.c2
-rw-r--r--include/linux/device.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c
index 75057aaab809..e078bc21d52e 100644
--- a/drivers/base/class.c
+++ b/drivers/base/class.c
@@ -197,7 +197,7 @@ static int class_device_create_uevent(struct class_device *class_dev,
197 * Note, the pointer created here is to be destroyed when finished by 197 * Note, the pointer created here is to be destroyed when finished by
198 * making a call to class_destroy(). 198 * making a call to class_destroy().
199 */ 199 */
200struct class *class_create(struct module *owner, char *name) 200struct class *class_create(struct module *owner, const char *name)
201{ 201{
202 struct class *cls; 202 struct class *cls;
203 int retval; 203 int retval;
diff --git a/include/linux/device.h b/include/linux/device.h
index 8d92013f9ce1..8a648cd94fa9 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -271,7 +271,7 @@ struct class_interface {
271extern int class_interface_register(struct class_interface *); 271extern int class_interface_register(struct class_interface *);
272extern void class_interface_unregister(struct class_interface *); 272extern void class_interface_unregister(struct class_interface *);
273 273
274extern struct class *class_create(struct module *owner, char *name); 274extern struct class *class_create(struct module *owner, const char *name);
275extern void class_destroy(struct class *cls); 275extern void class_destroy(struct class *cls);
276extern struct class_device *class_device_create(struct class *cls, 276extern struct class_device *class_device_create(struct class *cls,
277 struct class_device *parent, 277 struct class_device *parent,