diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-26 20:36:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-26 20:36:30 +0000 |
commit | a304f3d2b6605e237d4ad080feb51d53bbb82b19 (patch) | |
tree | 9b9b0ddcc821be5e39df31276f1757133276d919 /target/linux/gemini/patches-3.18/050-gpio-to-irq.patch | |
parent | 8ef68a20051f33d238e5cbcce95753b05bf79780 (diff) | |
download | upstream-a304f3d2b6605e237d4ad080feb51d53bbb82b19.tar.gz upstream-a304f3d2b6605e237d4ad080feb51d53bbb82b19.tar.bz2 upstream-a304f3d2b6605e237d4ad080feb51d53bbb82b19.zip |
gemini: add 3.18 support
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45033
Diffstat (limited to 'target/linux/gemini/patches-3.18/050-gpio-to-irq.patch')
-rw-r--r-- | target/linux/gemini/patches-3.18/050-gpio-to-irq.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/target/linux/gemini/patches-3.18/050-gpio-to-irq.patch b/target/linux/gemini/patches-3.18/050-gpio-to-irq.patch new file mode 100644 index 0000000000..18b0abdac6 --- /dev/null +++ b/target/linux/gemini/patches-3.18/050-gpio-to-irq.patch @@ -0,0 +1,21 @@ +--- a/arch/arm/mach-gemini/gpio.c 2015-03-01 10:34:52.492113048 +0100 ++++ b/arch/arm/mach-gemini/gpio.c 2015-03-01 10:34:59.876498159 +0100 +@@ -196,12 +196,18 @@ + return 0; + } + ++static int gemini_gpio_to_irq(struct gpio_chip *chip, unsigned gpio) ++{ ++ return gpio + GPIO_IRQ_BASE; ++} ++ + static struct gpio_chip gemini_gpio_chip = { + .label = "Gemini", + .direction_input = gemini_gpio_direction_input, + .get = gemini_gpio_get, + .direction_output = gemini_gpio_direction_output, + .set = gemini_gpio_set, ++ .to_irq = gemini_gpio_to_irq, + .base = 0, + .ngpio = GPIO_PORT_NUM * 32, + }; |