Hi Vladimir Zapolskiy,

On 03/23/2016 05:38 AM, Vladimir Zapolskiy wrote:
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.

Thank for the fix. I agree with you.

Fixes: 81fb0b901397 ("staging: android: ion_test: unregister the platform 
device")
Signed-off-by: Vladimir Zapolskiy <v...@mleia.com>
---
  drivers/staging/android/ion/ion_test.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/android/ion/ion_test.c 
b/drivers/staging/android/ion/ion_test.c
index da34bc12..83a3af0 100644
--- a/drivers/staging/android/ion/ion_test.c
+++ b/drivers/staging/android/ion/ion_test.c
@@ -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);
  }


Regards,
Phong.
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to