diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-15 15:43:32 +0530 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-07-16 16:06:00 +0930 |
commit | dac30a9843f8a6007e9d25cad2b5735679041397 (patch) | |
tree | 402bfeed65b13cc1bead421b58a442ae82fa0924 /drivers/rtc/rtc-m48t35.c | |
parent | 6b4f2b56a48c8ea9775bd2b29681725d4474367a (diff) |
drivers/rtc: Replace PTR_RET with PTR_ERR_OR_ZERO
PTR_RET is now deprecated. Use PTR_ERR_OR_ZERO instead.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/rtc/rtc-m48t35.c')
-rw-r--r-- | drivers/rtc/rtc-m48t35.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-m48t35.c b/drivers/rtc/rtc-m48t35.c index 23c3779a5f2b..411adb3f86a1 100644 --- a/drivers/rtc/rtc-m48t35.c +++ b/drivers/rtc/rtc-m48t35.c @@ -175,7 +175,7 @@ static int m48t35_probe(struct platform_device *pdev) priv->rtc = devm_rtc_device_register(&pdev->dev, "m48t35", &m48t35_ops, THIS_MODULE); - return PTR_RET(priv->rtc); + return PTR_ERR_OR_ZERO(priv->rtc); } static struct platform_driver m48t35_platform_driver = { |