diff options
author | Harini Katakam <harini.katakam@xilinx.com> | 2014-07-08 16:32:35 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-07-10 11:11:41 +0200 |
commit | 3242ba117e9bd29eb748afd6f6fbfbd6dd7cfe52 (patch) | |
tree | ac01c36057b3aa43eab356ede0d4f507e056d0fc /drivers/gpio/Makefile | |
parent | 85ea29ac1c4838a720e6fcde2805ddb33451f21b (diff) |
gpio: Add driver for Zynq GPIO controller
Add support for GPIO controller used by Xilinx Zynq.
v3 changes:
- Use linux/gpio/driver.h instead of linux/gpio.h
- Make irq a local variable in probe
v2 changes:
- convert to pm_runtime_force_(suspend|resume)
- add pm_runtime_set_active in probe()
- also (un)prepare clocks when they are dis-/enabled
- add some missing calls to pm_runtime_get()
- use pm_runtime_put() instead of sync variant
- remove gpio chip in driver remove()
- remove redundant type casts
- directly use IO helpers
- use BIT macro to set/clear bits
- migrate to GPIOLIB_IRQCHIP
Signed-off-by: Harini Katakam <harinik@xilinx.com>
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/Makefile')
-rw-r--r-- | drivers/gpio/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 09c5b5643bf..2881840843f 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -103,3 +103,4 @@ obj-$(CONFIG_GPIO_WM8994) += gpio-wm8994.o obj-$(CONFIG_GPIO_XILINX) += gpio-xilinx.o obj-$(CONFIG_GPIO_XTENSA) += gpio-xtensa.o obj-$(CONFIG_GPIO_ZEVIO) += gpio-zevio.o +obj-$(CONFIG_GPIO_ZYNQ) += gpio-zynq.o |