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

index 97b354a26a4468d125ed3e3566a9d87ce7584ddc..9ea2d078ea4c627b9d083a69e0e5fa207e593926 100644 (file)
@@ -269,11 +269,6 @@ static int pcf8563_probe(struct i2c_client *client,
        return 0;
 }
 
-static int pcf8563_remove(struct i2c_client *client)
-{
-       return 0;
-}
-
 static const struct i2c_device_id pcf8563_id[] = {
        { "pcf8563", 0 },
        { "rtc8564", 0 },
@@ -296,7 +291,6 @@ static struct i2c_driver pcf8563_driver = {
                .of_match_table = of_match_ptr(pcf8563_of_match),
        },
        .probe          = pcf8563_probe,
-       .remove         = pcf8563_remove,
        .id_table       = pcf8563_id,
 };