diff options
author | Alexandru Gheorghiu <gheorghiuandru@gmail.com> | 2013-03-18 21:01:34 -0400 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2013-05-08 19:59:44 -0400 |
commit | 2fbaf9b24a953ea13350f9cd9be5609492ea20a7 (patch) | |
tree | a4909548725f0311afcce03baeb67bb5780d95b1 | |
parent | 0572b12aa23b96afacc936990539f4b67ae64bda (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>
-rw-r--r-- | drivers/platform/x86/samsung-q10.c | 5 |
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 | ||
185 | static void __exit samsungq10_exit(void) | 182 | static void __exit samsungq10_exit(void) |