From: Sachin Kamat Date: Fri, 7 Jun 2013 00:09:10 +0000 (+1000) Subject: drivers/rtc/rtc-lp8788.c: remove empty function X-Git-Tag: next-20130607~2^2~155 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c8a3e1a115c2849c4e802c5c0113972de8ca75a3;p=karo-tx-linux.git drivers/rtc/rtc-lp8788.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 Acked-by: Milo Kim Signed-off-by: Andrew Morton --- diff --git a/drivers/rtc/rtc-lp8788.c b/drivers/rtc/rtc-lp8788.c index 76a82dc9e502..4ff6c73253b3 100644 --- a/drivers/rtc/rtc-lp8788.c +++ b/drivers/rtc/rtc-lp8788.c @@ -312,14 +312,8 @@ static int lp8788_rtc_probe(struct platform_device *pdev) return 0; } -static int lp8788_rtc_remove(struct platform_device *pdev) -{ - return 0; -} - static struct platform_driver lp8788_rtc_driver = { .probe = lp8788_rtc_probe, - .remove = lp8788_rtc_remove, .driver = { .name = LP8788_DEV_RTC, .owner = THIS_MODULE,