gpio-lynxpoint: Fix warning about unbalanced pm_runtime_enable
authorMathias Nyman <mathias.nyman@linux.intel.com>
Mon, 12 Aug 2013 11:05:41 +0000 (14:05 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 16 Aug 2013 15:11:33 +0000 (17:11 +0200)
Missing pm_runtime_disable call in driver remove path caused
an unbalanaced pm_runtime_enable warning when driver was reloaded

Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-lynxpoint.c

index 761c4705dfbb357b437f263dac54d1a5c8272864..2d9ca6055e5e0bde239247fabe41c960d4dd3020 100644 (file)
@@ -444,6 +444,7 @@ static int lp_gpio_remove(struct platform_device *pdev)
 {
        struct lp_gpio *lg = platform_get_drvdata(pdev);
        int err;
+       pm_runtime_disable(&pdev->dev);
        err = gpiochip_remove(&lg->chip);
        if (err)
                dev_warn(&pdev->dev, "failed to remove gpio_chip.\n");