diff options
author | Enrico Weigelt <info@metux.net> | 2019-06-17 19:00:11 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-06-27 17:56:50 +0300 |
commit | a1000673d288f3bb8bf936b043ef3ed3a4240b0a (patch) | |
tree | 099bea1ebb23c7db0ac6acb1664b392cd45e23d9 /drivers/gpio | |
parent | 4892d3a6a009f7eba2e806b9183e5d8790769f41 (diff) | |
download | linux-a1000673d288f3bb8bf936b043ef3ed3a4240b0a.tar.xz |
gpio: amd: Drop unused pdev pointer in privata data
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-amd-fch.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-amd-fch.c b/drivers/gpio/gpio-amd-fch.c index 38c3f4a3d4aa..f80b690f374c 100644 --- a/drivers/gpio/gpio-amd-fch.c +++ b/drivers/gpio/gpio-amd-fch.c @@ -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; |