gpio: amd: Drop unused pdev pointer in privata data
authorEnrico Weigelt <info@metux.net>
Mon, 17 Jun 2019 16:00:11 +0000 (18:00 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 27 Jun 2019 14:56:50 +0000 (15:56 +0100)
The pointer to the struct platform_device in the driver's private
data struct is never used and therefore can be dropped.

Signed-off-by: Enrico Weigelt <info@metux.net>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-amd-fch.c

index 38c3f4a..f80b690 100644 (file)
@@ -32,7 +32,6 @@ static struct resource amd_fch_gpio_iores =
                "amd-fch-gpio-iomem");
 
 struct amd_fch_gpio_priv {
-       struct platform_device          *pdev;
        struct gpio_chip                gc;
        void __iomem                    *base;
        struct amd_fch_gpio_pdata       *pdata;
@@ -153,7 +152,6 @@ static int amd_fch_gpio_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        priv->pdata     = pdata;
-       priv->pdev      = pdev;
 
        priv->gc.owner                  = THIS_MODULE;
        priv->gc.parent                 = &pdev->dev;