diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-09-21 14:05:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-09-21 14:05:45 -0700 |
commit | ad501bce5771bdea47fd26368a2d435424a1af7e (patch) | |
tree | aa4fb5973776dfa2488c9fbd0bd4079501a5bebd /arch/arm/mach-ep93xx/core.c | |
parent | da8f153e51290e7438ba7da66234a864e5d3e1c1 (diff) | |
parent | 8742bc92c36324ac4bac739ab413acc6630a875d (diff) | |
download | linux-ad501bce5771bdea47fd26368a2d435424a1af7e.tar.bz2 |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 4569/1: ep93xx_gpio_irq_type(): fix spurious enumeration offset for FGPIO handling
[ARM] 4568/1: fix l2x0 cache invalidate handling of unaligned addresses
Diffstat (limited to 'arch/arm/mach-ep93xx/core.c')
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index 851cc7158ca3..70b2c7801110 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c @@ -336,7 +336,7 @@ static int ep93xx_gpio_irq_type(unsigned int irq, unsigned int type) if (line >= 0 && line < 16) { gpio_line_config(line, GPIO_IN); } else { - gpio_line_config(EP93XX_GPIO_LINE_F(line), GPIO_IN); + gpio_line_config(EP93XX_GPIO_LINE_F(line-16), GPIO_IN); } port = line >> 3; |