mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 01:04:08 +08:00
[CPUFREQ] check return value of sysfs_create_file
Eliminate build warning (sysfs_create_file return value must be checked) Signed-off-by: Thomas Renninger <trenn@suse.de> Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
parent
489dc5cb18
commit
0a4b2ccc55
@ -826,13 +826,18 @@ static int cpufreq_add_dev (struct sys_device * sys_dev)
|
|||||||
/* set up files for this cpu device */
|
/* set up files for this cpu device */
|
||||||
drv_attr = cpufreq_driver->attr;
|
drv_attr = cpufreq_driver->attr;
|
||||||
while ((drv_attr) && (*drv_attr)) {
|
while ((drv_attr) && (*drv_attr)) {
|
||||||
sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
|
if (sysfs_create_file(&policy->kobj, &((*drv_attr)->attr)))
|
||||||
|
goto err_out_driver_exit;
|
||||||
drv_attr++;
|
drv_attr++;
|
||||||
}
|
}
|
||||||
if (cpufreq_driver->get)
|
if (cpufreq_driver->get){
|
||||||
sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
|
if (sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr))
|
||||||
if (cpufreq_driver->target)
|
goto err_out_driver_exit;
|
||||||
sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
|
}
|
||||||
|
if (cpufreq_driver->target){
|
||||||
|
if (sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr))
|
||||||
|
goto err_out_driver_exit;
|
||||||
|
}
|
||||||
|
|
||||||
spin_lock_irqsave(&cpufreq_driver_lock, flags);
|
spin_lock_irqsave(&cpufreq_driver_lock, flags);
|
||||||
for_each_cpu_mask(j, policy->cpus) {
|
for_each_cpu_mask(j, policy->cpus) {
|
||||||
|
Loading…
Reference in New Issue
Block a user