kobjects: fix up improper use of the kobject name field

A number of different drivers incorrect access the kobject name field
directly.  This is not correct as the name might not be in the array.
Use the proper accessor function instead.
This commit is contained in:
Greg Kroah-Hartman
2007-09-12 15:06:57 -07:00
parent 5901d0145c
commit 19c38de88a
10 changed files with 16 additions and 15 deletions

View File

@ -1013,7 +1013,7 @@ again:
goto again;
}
new_dentry = lookup_one_len(kobj->name, new_parent, strlen(kobj->name));
new_dentry = lookup_one_len(kobject_name(kobj), new_parent, strlen(kobject_name(kobj)));
if (IS_ERR(new_dentry)) {
error = PTR_ERR(new_dentry);
goto out_unlock;