aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-07-03 18:07:36 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 19:07:58 -0400
commit832ccd3fad7cadf9dbba8e28591be20a74b805a4 (patch)
treefd890ebf30647cf70ec2e282a3b264f9cdb662b0 /drivers/rtc
parenta87b0f802bbb89c83c1b7c921c3752e646827a22 (diff)
drivers/rtc/rtc-rv3029c2.c: remove empty function
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 <sachin.kamat@linaro.org> Cc: Gregory Hermant <gregory.hermant@calao-systems.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-rv3029c2.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-rv3029c2.c b/drivers/rtc/rtc-rv3029c2.c
index 9100a3401de1..1a779a67ff66 100644
--- a/drivers/rtc/rtc-rv3029c2.c
+++ b/drivers/rtc/rtc-rv3029c2.c
@@ -412,17 +412,11 @@ static int rv3029c2_probe(struct i2c_client *client,
412 return 0; 412 return 0;
413} 413}
414 414
415static int rv3029c2_remove(struct i2c_client *client)
416{
417 return 0;
418}
419
420static struct i2c_driver rv3029c2_driver = { 415static struct i2c_driver rv3029c2_driver = {
421 .driver = { 416 .driver = {
422 .name = "rtc-rv3029c2", 417 .name = "rtc-rv3029c2",
423 }, 418 },
424 .probe = rv3029c2_probe, 419 .probe = rv3029c2_probe,
425 .remove = rv3029c2_remove,
426 .id_table = rv3029c2_id, 420 .id_table = rv3029c2_id,
427}; 421};
428 422