summary refs log tree commit diff
path: root/drivers/rtc/rtc-nuc900.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-07-03 15:06:48 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 16:07:53 -0700
commit8bd941e7942e3f8bdb68df19e9c7fff57397a52d (patch)
tree22b2b0adb1c983ac167da4223127ed0e99075926 /drivers/rtc/rtc-nuc900.c
parentafdce3014002968fe5c3d97d36b71583337c5f06 (diff)
downloadlinux-8bd941e7942e3f8bdb68df19e9c7fff57397a52d.tar.gz
drivers/rtc/rtc-nuc900.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: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-nuc900.c')
-rw-r--r--drivers/rtc/rtc-nuc900.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-nuc900.c b/drivers/rtc/rtc-nuc900.c
index 994659b0f879..22861c5e0c59 100644
--- a/drivers/rtc/rtc-nuc900.c
+++ b/drivers/rtc/rtc-nuc900.c
@@ -260,13 +260,7 @@ static int __init nuc900_rtc_probe(struct platform_device *pdev)
 	return 0;
 }
 
-static int __exit nuc900_rtc_remove(struct platform_device *pdev)
-{
-	return 0;
-}
-
 static struct platform_driver nuc900_rtc_driver = {
-	.remove		= __exit_p(nuc900_rtc_remove),
 	.driver		= {
 		.name	= "nuc900-rtc",
 		.owner	= THIS_MODULE,