From: Alexandru Gheorghiu Date: Tue, 19 Mar 2013 01:01:34 +0000 (+0200) Subject: drivers: platform: x86: Use PTR_RET function X-Git-Tag: accepted/tizen/common/20141203.182822~2252^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2fbaf9b24a953ea13350f9cd9be5609492ea20a7;p=platform%2Fkernel%2Flinux-arm64.git 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 Signed-off-by: Matthew Garrett --- diff --git a/drivers/platform/x86/samsung-q10.c b/drivers/platform/x86/samsung-q10.c index 5f77005..1a90b62 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) 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)