diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-15 14:13:32 +0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-07-16 10:36:00 +0400 |
commit | dac30a9843f8a6007e9d25cad2b5735679041397 (patch) | |
tree | 402bfeed65b13cc1bead421b58a442ae82fa0924 /drivers/rtc/rtc-pcf8583.c | |
parent | 6b4f2b56a48c8ea9775bd2b29681725d4474367a (diff) | |
download | linux-dac30a9843f8a6007e9d25cad2b5735679041397.tar.xz |
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-pcf8583.c')
-rw-r--r-- | drivers/rtc/rtc-pcf8583.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-pcf8583.c b/drivers/rtc/rtc-pcf8583.c index 843a745c42f3..c2639845186b 100644 --- a/drivers/rtc/rtc-pcf8583.c +++ b/drivers/rtc/rtc-pcf8583.c @@ -285,7 +285,7 @@ static int pcf8583_probe(struct i2c_client *client, pcf8583_driver.driver.name, &pcf8583_rtc_ops, THIS_MODULE); - return PTR_RET(pcf8583->rtc); + return PTR_ERR_OR_ZERO(pcf8583->rtc); } static const struct i2c_device_id pcf8583_id[] = { |