]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/rtc/rtc-m41t93.c: remove empty function
authorSachin Kamat <sachin.kamat@linaro.org>
Fri, 7 Jun 2013 00:09:20 +0000 (10:09 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 7 Jun 2013 05:43:05 +0000 (15:43 +1000)
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: Nikolaus Voss <n.voss@weinmann.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/rtc/rtc-m41t93.c

index 9707d36e8b15e427d14f51819a5105607c847b81..4698c7e344e4be907590565a89880218367dbd4b 100644 (file)
@@ -194,19 +194,12 @@ static int m41t93_probe(struct spi_device *spi)
        return 0;
 }
 
-
-static int m41t93_remove(struct spi_device *spi)
-{
-       return 0;
-}
-
 static struct spi_driver m41t93_driver = {
        .driver = {
                .name   = "rtc-m41t93",
                .owner  = THIS_MODULE,
        },
        .probe  = m41t93_probe,
-       .remove = m41t93_remove,
 };
 
 module_spi_driver(m41t93_driver);