diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2010-08-05 11:38:18 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-05 16:53:35 -0400 |
commit | 6937e8f8c0135f2325194c372ada6dc655499992 (patch) | |
tree | 436ede36f95f1cb40d5b9bd8f6711ca26faf0045 /drivers/base/core.c | |
parent | 6fd69dc578fa0b1bbc3aad70ae3af9a137211707 (diff) |
driver core: device_rename's new_name can be const
The new_name argument to device_rename() can be
const as kobject_rename's new_name argument is.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/core.c')
-rw-r--r-- | drivers/base/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index f8e72724dd4b..d1b2c9adc271 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -1599,7 +1599,7 @@ EXPORT_SYMBOL_GPL(device_destroy); | |||
1599 | * on the same device to ensure that new_name is valid and | 1599 | * on the same device to ensure that new_name is valid and |
1600 | * won't conflict with other devices. | 1600 | * won't conflict with other devices. |
1601 | */ | 1601 | */ |
1602 | int device_rename(struct device *dev, char *new_name) | 1602 | int device_rename(struct device *dev, const char *new_name) |
1603 | { | 1603 | { |
1604 | char *old_class_name = NULL; | 1604 | char *old_class_name = NULL; |
1605 | char *new_class_name = NULL; | 1605 | char *new_class_name = NULL; |