]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
regulator: ab8500: Remove ab8500_regulator_debug_init/exit()
authorAxel Lin <axel.lin@ingics.com>
Sun, 8 Jun 2014 14:47:10 +0000 (22:47 +0800)
committerMark Brown <broonie@linaro.org>
Sun, 22 Jun 2014 10:51:47 +0000 (11:51 +0100)
CONFIG_REGULATOR_AB8500_DEBUG is always not defined.
ab8500_regulator_debug_init() is not called at all now,
ab8500_regulator_debug_exit() simply return 0, thus remove them.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/regulator/ab8500.c
include/linux/regulator/ab8500.h

index 88da8626a57a06de220cac3d86a0a8ca21c36202..1fda14e12ea84cd60569696adf06020bd1fcadf9 100644 (file)
@@ -3071,21 +3071,8 @@ static int ab8500_regulator_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int ab8500_regulator_remove(struct platform_device *pdev)
-{
-       int err;
-
-       /* remove regulator debug */
-       err = ab8500_regulator_debug_exit(pdev);
-       if (err)
-               return err;
-
-       return 0;
-}
-
 static struct platform_driver ab8500_regulator_driver = {
        .probe = ab8500_regulator_probe,
-       .remove = ab8500_regulator_remove,
        .driver         = {
                .name   = "ab8500-regulator",
                .owner  = THIS_MODULE,
index 75307447cef966eb3d168de7542c84181c849d63..d8ecefaf63ca0ed956d82afbffedc2debe569311 100644 (file)
@@ -322,18 +322,4 @@ struct ab8500_regulator_platform_data {
        struct regulator_init_data *ext_regulator;
 };
 
-#ifdef CONFIG_REGULATOR_AB8500_DEBUG
-int ab8500_regulator_debug_init(struct platform_device *pdev);
-int ab8500_regulator_debug_exit(struct platform_device *pdev);
-#else
-static inline int ab8500_regulator_debug_init(struct platform_device *pdev)
-{
-       return 0;
-}
-static inline int ab8500_regulator_debug_exit(struct platform_device *pdev)
-{
-       return 0;
-}
-#endif
-
 #endif