aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-m48t86.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-07-03 15:06:46 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 16:07:53 -0700
commitd43fcab6b29b818a627501b21628967b5396b1f9 (patch)
treebaf4f2466a741d7e44f2b8c2d3a1a0832ef77d86 /drivers/rtc/rtc-m48t86.c
parentdrivers/rtc/rtc-rv3029c2.c: fix disabling AIE irq (diff)
downloadlinux-dev-d43fcab6b29b818a627501b21628967b5396b1f9.tar.xz
linux-dev-d43fcab6b29b818a627501b21628967b5396b1f9.zip
drivers/rtc/rtc-m48t86.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> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-m48t86.c')
-rw-r--r--drivers/rtc/rtc-m48t86.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-m48t86.c b/drivers/rtc/rtc-m48t86.c
index d1fe7f5cd20a..2d30314fa07f 100644
--- a/drivers/rtc/rtc-m48t86.c
+++ b/drivers/rtc/rtc-m48t86.c
@@ -166,18 +166,12 @@ static int m48t86_rtc_probe(struct platform_device *dev)
return 0;
}
-static int m48t86_rtc_remove(struct platform_device *dev)
-{
- return 0;
-}
-
static struct platform_driver m48t86_rtc_platform_driver = {
.driver = {
.name = "rtc-m48t86",
.owner = THIS_MODULE,
},
.probe = m48t86_rtc_probe,
- .remove = m48t86_rtc_remove,
};
module_platform_driver(m48t86_rtc_platform_driver);