aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kobject.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2007-10-25 00:52:56 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2008-01-24 23:40:04 -0500
commit7a83d456a86d559a6347115d206d23774bc152d9 (patch)
tree559cd343f5ff9d8504867a706cf9ba67bde1b2a7 /lib/kobject.c
parentb1c7192df1b089ed654c76fbf14d7f7dbf4b9616 (diff)
kobject: remove incorrect comment in kobject_rename
As pointed out by Kay. Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'lib/kobject.c')
-rw-r--r--lib/kobject.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/kobject.c b/lib/kobject.c
index 3590f022a609..9500339ae024 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -334,8 +334,6 @@ int kobject_rename(struct kobject * kobj, const char *new_name)
334 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath); 334 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
335 envp[0] = devpath_string; 335 envp[0] = devpath_string;
336 envp[1] = NULL; 336 envp[1] = NULL;
337 /* Note : if we want to send the new name alone, not the full path,
338 * we could probably use kobject_name(kobj); */
339 337
340 error = sysfs_rename_dir(kobj, new_name); 338 error = sysfs_rename_dir(kobj, new_name);
341 339