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:
@@ -828,7 +828,7 @@ static int cpufreq_add_dev (struct sys_device * sys_dev)
|
||||
/* prepare interface data */
|
||||
policy->kobj.parent = &sys_dev->kobj;
|
||||
policy->kobj.ktype = &ktype_cpufreq;
|
||||
strlcpy(policy->kobj.name, "cpufreq", KOBJ_NAME_LEN);
|
||||
kobject_set_name(&policy->kobj, "cpufreq");
|
||||
|
||||
ret = kobject_register(&policy->kobj);
|
||||
if (ret) {
|
||||
|
||||
Reference in New Issue
Block a user