aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeerthy <j-keerthy@ti.com>2017-01-04 13:56:28 +0530
committerLinus Walleij <linus.walleij@linaro.org>2017-01-11 11:59:43 +0100
commitbb5b06750f1d9b2d632d942d8a72b35a4dd930b9 (patch)
treec76eca5f87460bf50d804b3fc8fe0dc2f5db3868
parentgpio: devres: Use global array of gpio suffixes (diff)
downloadlinux-dev-bb5b06750f1d9b2d632d942d8a72b35a4dd930b9.tar.xz
linux-dev-bb5b06750f1d9b2d632d942d8a72b35a4dd930b9.zip
gpio: davinci: Remove redundant members davinci_gpio_controller stuct
davinci_gpio_controller struct has set_data, in_data, clr_data members that are assigned and never used. Signed-off-by: Keerthy <j-keerthy@ti.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/gpio/gpio-davinci.c3
-rw-r--r--include/linux/platform_data/gpio-davinci.h3
2 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
index 9191056548fe..163f81e3db83 100644
--- a/drivers/gpio/gpio-davinci.c
+++ b/drivers/gpio/gpio-davinci.c
@@ -266,9 +266,6 @@ static int davinci_gpio_probe(struct platform_device *pdev)
if (!regs)
return -ENXIO;
chips[i].regs = regs;
- chips[i].set_data = &regs->set_data;
- chips[i].clr_data = &regs->clr_data;
- chips[i].in_data = &regs->in_data;
gpiochip_add_data(&chips[i].chip, &chips[i]);
}
diff --git a/include/linux/platform_data/gpio-davinci.h b/include/linux/platform_data/gpio-davinci.h
index 6ace3fd32b6a..44ca5303849c 100644
--- a/include/linux/platform_data/gpio-davinci.h
+++ b/include/linux/platform_data/gpio-davinci.h
@@ -33,9 +33,6 @@ struct davinci_gpio_controller {
/* Serialize access to GPIO registers */
spinlock_t lock;
void __iomem *regs;
- void __iomem *set_data;
- void __iomem *clr_data;
- void __iomem *in_data;
int gpio_unbanked;
unsigned gpio_irq;
};