mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 08:31:39 +00:00
staging: android: ion_test: fix check of platform_device_register_simple() error code
On error platform_device_register_simple() returns ERR_PTR() value,
check for NULL always fails. The change corrects the check itself and
propagates the returned error upwards.
Fixes: 81fb0b9013
("staging: android: ion_test: unregister the platform device")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f54e994c29
commit
ccbc2a9e78
@ -285,8 +285,8 @@ static int __init ion_test_init(void)
|
||||
{
|
||||
ion_test_pdev = platform_device_register_simple("ion-test",
|
||||
-1, NULL, 0);
|
||||
if (!ion_test_pdev)
|
||||
return -ENODEV;
|
||||
if (IS_ERR(ion_test_pdev))
|
||||
return PTR_ERR(ion_test_pdev);
|
||||
|
||||
return platform_driver_probe(&ion_test_platform_driver, ion_test_probe);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user