Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 832ccd3f authored by Sachin Kamat's avatar Sachin Kamat Committed by Linus Torvalds
Browse files

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: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Gregory Hermant <gregory.hermant@calao-systems.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a87b0f80
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -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,
};