aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-07-03 18:06:56 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 19:07:54 -0400
commit8c0a4273306d2bf95d2448ff457847d7c59bec52 (patch)
treee4b8d5130eb8efccb35a36f1cd78a4fa5a90dc96
parent67d326fa716f1521d435f18a4adae83a767cde69 (diff)
drivers/rtc/rtc-da9052.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 <sachin.kamat@linaro.org> Cc: David Dajun Chen <dchen@diasemi.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/rtc/rtc-da9052.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-da9052.c b/drivers/rtc/rtc-da9052.c
index a61ab7fa8a66..2f7fdd77a6f0 100644
--- a/drivers/rtc/rtc-da9052.c
+++ b/drivers/rtc/rtc-da9052.c
@@ -255,14 +255,8 @@ static int da9052_rtc_probe(struct platform_device *pdev)
255 return 0; 255 return 0;
256} 256}
257 257
258static int da9052_rtc_remove(struct platform_device *pdev)
259{
260 return 0;
261}
262
263static struct platform_driver da9052_rtc_driver = { 258static struct platform_driver da9052_rtc_driver = {
264 .probe = da9052_rtc_probe, 259 .probe = da9052_rtc_probe,
265 .remove = da9052_rtc_remove,
266 .driver = { 260 .driver = {
267 .name = "da9052-rtc", 261 .name = "da9052-rtc",
268 .owner = THIS_MODULE, 262 .owner = THIS_MODULE,