driver core fixes: device_register() retval check in platform.c
Check the return value of device_register() in platform_bus_init(). Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
cb360bbf63
commit
fbfb144553
|
@ -611,8 +611,15 @@ EXPORT_SYMBOL_GPL(platform_bus_type);
|
||||||
|
|
||||||
int __init platform_bus_init(void)
|
int __init platform_bus_init(void)
|
||||||
{
|
{
|
||||||
device_register(&platform_bus);
|
int error;
|
||||||
return bus_register(&platform_bus_type);
|
|
||||||
|
error = device_register(&platform_bus);
|
||||||
|
if (error)
|
||||||
|
return error;
|
||||||
|
error = bus_register(&platform_bus_type);
|
||||||
|
if (error)
|
||||||
|
device_unregister(&platform_bus);
|
||||||
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
|
#ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
|
||||||
|
|
Loading…
Reference in New Issue