pinctrl: sh-pfc: Kill unused variable in sh_pfc_remove()
authorGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 26 Apr 2016 10:30:26 +0000 (12:30 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 29 Apr 2016 09:09:16 +0000 (11:09 +0200)
If CONFIG_PINCTRL_SH_PFC_GPIO=n:

    drivers/pinctrl/sh-pfc/core.c: In function 'sh_pfc_remove':
    drivers/pinctrl/sh-pfc/core.c:649:17: warning: unused variable 'pfc' [-Wunused-variable]

Fixes: 67ec8d7b48463904 ("pinctrl: ish-pfc: Use devm_pinctrl_register() for pinctrl registration")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/sh-pfc/core.c

index 9a085cbb9d1808916adfbe0713bdc8ec25fa0783..da2bf79339064b372c244bab5e037af8d537d707 100644 (file)
@@ -598,10 +598,8 @@ static int sh_pfc_probe(struct platform_device *pdev)
 
 static int sh_pfc_remove(struct platform_device *pdev)
 {
-       struct sh_pfc *pfc = platform_get_drvdata(pdev);
-
 #ifdef CONFIG_PINCTRL_SH_PFC_GPIO
-       sh_pfc_unregister_gpiochip(pfc);
+       sh_pfc_unregister_gpiochip(platform_get_drvdata(pdev));
 #endif
 
        return 0;