[PATCH] class_device_rename can take const char *

From: Stephen Hemminger
Date: Fri Aug 15 2003 - 13:18:28 EST


Trivial change: rename can take a constant string.
diff -Nru a/drivers/base/class.c b/drivers/base/class.c
--- a/drivers/base/class.c Fri Aug 15 11:11:36 2003
+++ b/drivers/base/class.c Fri Aug 15 11:11:36 2003
@@ -341,7 +341,7 @@
class_device_put(class_dev);
}

-int class_device_rename(struct class_device *class_dev, char *new_name)
+int class_device_rename(struct class_device *class_dev, const char *new_name)
{
class_dev = class_device_get(class_dev);
if (!class_dev)
diff -Nru a/include/linux/device.h b/include/linux/device.h
--- a/include/linux/device.h Fri Aug 15 11:11:36 2003
+++ b/include/linux/device.h Fri Aug 15 11:11:36 2003
@@ -210,7 +210,7 @@
extern int class_device_add(struct class_device *);
extern void class_device_del(struct class_device *);

-extern int class_device_rename(struct class_device *, char *);
+extern int class_device_rename(struct class_device *, const char *);

extern struct class_device * class_device_get(struct class_device *);
extern void class_device_put(struct class_device *);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/