From: Sachin Kamat Date: Wed, 3 Jul 2013 22:06:53 +0000 (-0700) Subject: drivers/rtc/rtc-lp8788.c: remove empty function X-Git-Tag: v3.11-rc1~99^2~139 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ffeb40515971c9860ff671bb074689db15e18831;p=platform%2Fkernel%2Flinux-stable.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 Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-lp8788.c b/drivers/rtc/rtc-lp8788.c index 76a82dc..4ff6c73 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,