]> Pileus Git - ~andy/linux/commitdiff
drivers/rtc/rtc-msm6242.c: remove empty function
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 3 Jul 2013 22:06:49 +0000 (15:06 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 3 Jul 2013 23:07:53 +0000 (16:07 -0700)
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: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rtc/rtc-msm6242.c

index c014fa2ee5e935a529cb18ca29ac8a52bdaff816..426cb5189daa7ee395bd842476ce4430be5426d4 100644 (file)
@@ -222,17 +222,11 @@ static int __init msm6242_rtc_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __exit msm6242_rtc_remove(struct platform_device *pdev)
-{
-       return 0;
-}
-
 static struct platform_driver msm6242_rtc_driver = {
        .driver = {
                .name   = "rtc-msm6242",
                .owner  = THIS_MODULE,
        },
-       .remove = __exit_p(msm6242_rtc_remove),
 };
 
 module_platform_driver_probe(msm6242_rtc_driver, msm6242_rtc_probe);