diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2010-01-01 08:29:22 +0100 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-03-02 00:40:45 +0100 |
commit | 669cb51c6abf77e10cbeb6f483c96abc492206ac (patch) | |
tree | 6f548cfcd5ba3794ea67ee94d6da18324c7b99c5 /arch/arm/mach-pxa/viper.c | |
parent | Merge branch 'for-rmk' of git://git.marvell.com/orion into devel-stable (diff) | |
download | linux-669cb51c6abf77e10cbeb6f483c96abc492206ac.tar.xz linux-669cb51c6abf77e10cbeb6f483c96abc492206ac.zip |
[ARM] pxa: use chip->ack() instead of accessing GEDR directly
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa/viper.c')
-rw-r--r-- | arch/arm/mach-pxa/viper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/viper.c b/arch/arm/mach-pxa/viper.c index 89f258c9e126..12d4ed338d03 100644 --- a/arch/arm/mach-pxa/viper.c +++ b/arch/arm/mach-pxa/viper.c @@ -281,7 +281,7 @@ static void viper_irq_handler(unsigned int irq, struct irq_desc *desc) do { /* we're in a chained irq handler, * so ack the interrupt by hand */ - GEDR(VIPER_CPLD_GPIO) = GPIO_bit(VIPER_CPLD_GPIO); + desc->chip->ack(irq); if (likely(pending)) { irq = viper_bit_to_irq(__ffs(pending)); |