aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-07-03 18:07:50 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 19:07:59 -0400
commit8ff7b7d90ed3f2181ec8342758670891bba2f7bd (patch)
treeffc2112aac2c5a23193335d2a97ed9df8285a894 /drivers
parent17cc54b20e4a06c081dec6abc9317a69605db541 (diff)
drivers/rtc/rtc-m48t35.c: use PTR_RET()
Use of PTR_RET() simplifies the code. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/rtc/rtc-m48t35.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/rtc/rtc-m48t35.c b/drivers/rtc/rtc-m48t35.c
index 25678d4ee3b5..23c3779a5f2b 100644
--- a/drivers/rtc/rtc-m48t35.c
+++ b/drivers/rtc/rtc-m48t35.c
@@ -20,6 +20,7 @@
20#include <linux/platform_device.h> 20#include <linux/platform_device.h>
21#include <linux/bcd.h> 21#include <linux/bcd.h>
22#include <linux/io.h> 22#include <linux/io.h>
23#include <linux/err.h>
23 24
24#define DRV_VERSION "1.0" 25#define DRV_VERSION "1.0"
25 26
@@ -174,10 +175,7 @@ static int m48t35_probe(struct platform_device *pdev)
174 175
175 priv->rtc = devm_rtc_device_register(&pdev->dev, "m48t35", 176 priv->rtc = devm_rtc_device_register(&pdev->dev, "m48t35",
176 &m48t35_ops, THIS_MODULE); 177 &m48t35_ops, THIS_MODULE);
177 if (IS_ERR(priv->rtc)) 178 return PTR_RET(priv->rtc);
178 return PTR_ERR(priv->rtc);
179
180 return 0;
181} 179}
182 180
183static struct platform_driver m48t35_platform_driver = { 181static struct platform_driver m48t35_platform_driver = {