projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11f54d0
)
drivers/rtc/rtc-isl12022.c: use PTR_RET()
author
Sachin Kamat
<
[email protected]
>
Wed, 3 Jul 2013 22:07:49 +0000
(15:07 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 3 Jul 2013 23:07:59 +0000
(16:07 -0700)
Use of PTR_RET() simplifies the code.
Signed-off-by: Sachin Kamat <
[email protected]
>
Cc: Roman Fietze <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/rtc-isl12022.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-isl12022.c
b/drivers/rtc/rtc-isl12022.c
index 6f2de99e261602214c6f1fd0b4bf3752d45abf2f..5dbdc4405718f55705151b7f62ad8d76db154341 100644
(file)
--- a/
drivers/rtc/rtc-isl12022.c
+++ b/
drivers/rtc/rtc-isl12022.c
@@
-16,6
+16,7
@@
#include <linux/rtc.h>
#include <linux/slab.h>
#include <linux/module.h>
+#include <linux/err.h>
#define DRV_VERSION "0.1"
@@
-267,10
+268,7
@@
static int isl12022_probe(struct i2c_client *client,
isl12022->rtc = devm_rtc_device_register(&client->dev,
isl12022_driver.driver.name,
&isl12022_rtc_ops, THIS_MODULE);
- if (IS_ERR(isl12022->rtc))
- return PTR_ERR(isl12022->rtc);
-
- return 0;
+ return PTR_RET(isl12022->rtc);
}
static const struct i2c_device_id isl12022_id[] = {