Commit a1000673 authored by Enrico Weigelt's avatar Enrico Weigelt Committed by Linus Walleij

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: default avatarEnrico Weigelt <info@metux.net>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 4892d3a6
...@@ -32,7 +32,6 @@ static struct resource amd_fch_gpio_iores = ...@@ -32,7 +32,6 @@ static struct resource amd_fch_gpio_iores =
"amd-fch-gpio-iomem"); "amd-fch-gpio-iomem");
struct amd_fch_gpio_priv { struct amd_fch_gpio_priv {
struct platform_device *pdev;
struct gpio_chip gc; struct gpio_chip gc;
void __iomem *base; void __iomem *base;
struct amd_fch_gpio_pdata *pdata; struct amd_fch_gpio_pdata *pdata;
...@@ -153,7 +152,6 @@ static int amd_fch_gpio_probe(struct platform_device *pdev) ...@@ -153,7 +152,6 @@ static int amd_fch_gpio_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
priv->pdata = pdata; priv->pdata = pdata;
priv->pdev = pdev;
priv->gc.owner = THIS_MODULE; priv->gc.owner = THIS_MODULE;
priv->gc.parent = &pdev->dev; priv->gc.parent = &pdev->dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment