diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2010-01-01 02:29:22 -0500 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-03-01 18:40:45 -0500 |
commit | 669cb51c6abf77e10cbeb6f483c96abc492206ac (patch) | |
tree | 6f548cfcd5ba3794ea67ee94d6da18324c7b99c5 /arch/arm/mach-pxa/viper.c | |
parent | 2a2d10f386c1bacabe1a530c06dc8488eac419e5 (diff) |
[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) | |||
281 | do { | 281 | do { |
282 | /* we're in a chained irq handler, | 282 | /* we're in a chained irq handler, |
283 | * so ack the interrupt by hand */ | 283 | * so ack the interrupt by hand */ |
284 | GEDR(VIPER_CPLD_GPIO) = GPIO_bit(VIPER_CPLD_GPIO); | 284 | desc->chip->ack(irq); |
285 | 285 | ||
286 | if (likely(pending)) { | 286 | if (likely(pending)) { |
287 | irq = viper_bit_to_irq(__ffs(pending)); | 287 | irq = viper_bit_to_irq(__ffs(pending)); |