diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-06 10:51:34 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-18 03:36:01 +0100 |
commit | 60b7f4cbdcbc8da663f2f1593b882d0a74f71577 (patch) | |
tree | be08e1a93c2ab378896ff9078bb00807a94ca2f3 /drivers/rtc/rtc-abx80x.c | |
parent | 559e883e0f776855072d70001a4c68a0d07a68f4 (diff) | |
download | blackbird-op-linux-60b7f4cbdcbc8da663f2f1593b882d0a74f71577.tar.gz blackbird-op-linux-60b7f4cbdcbc8da663f2f1593b882d0a74f71577.zip |
rtc: abx80x: remove useless .remove
.remove is empty, remove it.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-abx80x.c')
-rw-r--r-- | drivers/rtc/rtc-abx80x.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-abx80x.c b/drivers/rtc/rtc-abx80x.c index 90f25ac78abc..73830670a41f 100644 --- a/drivers/rtc/rtc-abx80x.c +++ b/drivers/rtc/rtc-abx80x.c @@ -851,11 +851,6 @@ static int abx80x_probe(struct i2c_client *client, return rtc_register_device(priv->rtc); } -static int abx80x_remove(struct i2c_client *client) -{ - return 0; -} - static const struct i2c_device_id abx80x_id[] = { { "abx80x", ABX80X }, { "ab0801", AB0801 }, @@ -876,7 +871,6 @@ static struct i2c_driver abx80x_driver = { .name = "rtc-abx80x", }, .probe = abx80x_probe, - .remove = abx80x_remove, .id_table = abx80x_id, }; |