aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorAlexandru Gheorghiu <gheorghiuandru@gmail.com>2013-03-18 21:01:34 -0400
committerMatthew Garrett <matthew.garrett@nebula.com>2013-05-08 19:59:44 -0400
commit2fbaf9b24a953ea13350f9cd9be5609492ea20a7 (patch)
treea4909548725f0311afcce03baeb67bb5780d95b1 /drivers/platform
parent0572b12aa23b96afacc936990539f4b67ae64bda (diff)
drivers: platform: x86: Use PTR_RET function
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>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/samsung-q10.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/platform/x86/samsung-q10.c b/drivers/platform/x86/samsung-q10.c
index 5f770059fd4d..1a90b62a71c6 100644
--- a/drivers/platform/x86/samsung-q10.c
+++ b/drivers/platform/x86/samsung-q10.c
@@ -176,10 +176,7 @@ static int __init samsungq10_init(void)
176 samsungq10_probe, 176 samsungq10_probe,
177 NULL, 0, NULL, 0); 177 NULL, 0, NULL, 0);
178 178
179 if (IS_ERR(samsungq10_device)) 179 return PTR_RET(samsungq10_device);
180 return PTR_ERR(samsungq10_device);
181
182 return 0;
183} 180}
184 181
185static void __exit samsungq10_exit(void) 182static void __exit samsungq10_exit(void)