[POWERPC] of_device_register: propagate device_create_file return code
Removed compiler warning about ignoring the return code of device_create_file in of_device_register. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
c99767974e
commit
39043a5b3d
1 changed files with 1 additions and 3 deletions
|
@ -109,9 +109,7 @@ int of_device_register(struct of_device *ofdev)
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
device_create_file(&ofdev->dev, &dev_attr_devspec);
|
return device_create_file(&ofdev->dev, &dev_attr_devspec);
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void of_device_unregister(struct of_device *ofdev)
|
void of_device_unregister(struct of_device *ofdev)
|
||||||
|
|
Loading…
Add table
Reference in a new issue