提交 832ccd3f 编写于 作者: S Sachin Kamat 提交者: Linus Torvalds

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: NSachin Kamat <sachin.kamat@linaro.org>
Cc: Gregory Hermant <gregory.hermant@calao-systems.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 a87b0f80
...@@ -412,17 +412,11 @@ static int rv3029c2_probe(struct i2c_client *client, ...@@ -412,17 +412,11 @@ static int rv3029c2_probe(struct i2c_client *client,
return 0; return 0;
} }
static int rv3029c2_remove(struct i2c_client *client)
{
return 0;
}
static struct i2c_driver rv3029c2_driver = { static struct i2c_driver rv3029c2_driver = {
.driver = { .driver = {
.name = "rtc-rv3029c2", .name = "rtc-rv3029c2",
}, },
.probe = rv3029c2_probe, .probe = rv3029c2_probe,
.remove = rv3029c2_remove,
.id_table = rv3029c2_id, .id_table = rv3029c2_id,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册