[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1404499648-14414-1-git-send-email-fabf@skynet.be>
Date: Fri, 4 Jul 2014 20:47:28 +0200
From: Fabian Frederick <fabf@...net.be>
To: linux-kernel@...r.kernel.org
Cc: Fabian Frederick <fabf@...net.be>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-sh@...r.kernel.org
Subject: [PATCH 1/1] arch/sh/kernel/time.c: use PTR_ERR_OR_ZERO
replace IS_ERR/PTR_ERR
Cc: Andrew Morton <akpm@...ux-foundation.org>
Cc: linux-sh@...r.kernel.org
Signed-off-by: Fabian Frederick <fabf@...net.be>
---
This is untested.
arch/sh/kernel/time.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/arch/sh/kernel/time.c b/arch/sh/kernel/time.c
index 552c8fc..d6d0a98 100644
--- a/arch/sh/kernel/time.c
+++ b/arch/sh/kernel/time.c
@@ -80,10 +80,8 @@ static int __init rtc_generic_init(void)
return -ENODEV;
pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
- if (IS_ERR(pdev))
- return PTR_ERR(pdev);
- return 0;
+ return PTR_ERR_OR_ZERO(pdev);
}
module_init(rtc_generic_init);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists