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:
a87b0f8
)
drivers/rtc/rtc-rv3029c2.c: remove empty function
author
Sachin Kamat
<
[email protected]
>
Wed, 3 Jul 2013 22:07:36 +0000
(15:07 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 3 Jul 2013 23:07:58 +0000
(16:07 -0700)
After the switch to devm_* functions and the removal of
rtc_device_unregister(), the 'remove' function does not do anything.
Delete it.
Signed-off-by: Sachin Kamat <
[email protected]
>
Cc: Gregory Hermant <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/rtc-rv3029c2.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-rv3029c2.c
b/drivers/rtc/rtc-rv3029c2.c
index 9100a3401de12cf2ae72d30a659d2385b259ce8c..1a779a67ff6683567ff9d8dbc40fc7f92ef9767f 100644
(file)
--- a/
drivers/rtc/rtc-rv3029c2.c
+++ b/
drivers/rtc/rtc-rv3029c2.c
@@
-412,17
+412,11
@@
static int rv3029c2_probe(struct i2c_client *client,
return 0;
}
-static int rv3029c2_remove(struct i2c_client *client)
-{
- return 0;
-}
-
static struct i2c_driver rv3029c2_driver = {
.driver = {
.name = "rtc-rv3029c2",
},
.probe = rv3029c2_probe,
- .remove = rv3029c2_remove,
.id_table = rv3029c2_id,
};