drivers: platform: x86: Use PTR_RET function
authorAlexandru Gheorghiu <gheorghiuandru@gmail.com>
Tue, 19 Mar 2013 01:01:34 +0000 (03:01 +0200)
committerMatthew Garrett <matthew.garrett@nebula.com>
Wed, 8 May 2013 23:59:44 +0000 (19:59 -0400)
Used PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.

Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
drivers/platform/x86/samsung-q10.c

index 5f77005..1a90b62 100644 (file)
@@ -176,10 +176,7 @@ static int __init samsungq10_init(void)
                                                   samsungq10_probe,
                                                   NULL, 0, NULL, 0);
 
-       if (IS_ERR(samsungq10_device))
-               return PTR_ERR(samsungq10_device);
-
-       return 0;
+       return PTR_RET(samsungq10_device);
 }
 
 static void __exit samsungq10_exit(void)