drivers/rtc/rtc-dm355evm.c: remove empty function
authorSachin Kamat <sachin.kamat@linaro.org>
Wed, 3 Jul 2013 22:06:55 +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>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rtc/rtc-dm355evm.c

index 1855581..1aca083 100644 (file)
@@ -139,18 +139,12 @@ static int dm355evm_rtc_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int dm355evm_rtc_remove(struct platform_device *pdev)
-{
-       return 0;
-}
-
 /*
  * I2C is used to talk to the MSP430, but this platform device is
  * exposed by an MFD driver that manages I2C communications.
  */
 static struct platform_driver rtc_dm355evm_driver = {
        .probe          = dm355evm_rtc_probe,
-       .remove         = dm355evm_rtc_remove,
        .driver         = {
                .owner  = THIS_MODULE,
                .name   = "rtc-dm355evm",