From: Kukjin Kim Date: Wed, 27 Jul 2011 23:16:34 +0000 (+0900) Subject: ARM: S5P64X0: Replace irq_gc_ack() with irq_gc_ack_set_bit() X-Git-Tag: next-20110819~76^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=50dd17f7353b0693e0ebd9deec193e30315af4c9;p=karo-tx-linux.git ARM: S5P64X0: Replace irq_gc_ack() with irq_gc_ack_set_bit() According to 'replace irq_gc_ack() with {set,clr}_bit variants', (commit: 659fb32d1b67476f4ade25e9ea0e2642a5b9c4b5), this should be fixed. Signed-off-by: Kukjin Kim --- diff --git a/arch/arm/mach-s5p64x0/irq-eint.c b/arch/arm/mach-s5p64x0/irq-eint.c index 69ed4545112b..fe7380f5c3cd 100644 --- a/arch/arm/mach-s5p64x0/irq-eint.c +++ b/arch/arm/mach-s5p64x0/irq-eint.c @@ -129,7 +129,7 @@ static int s5p64x0_alloc_gc(void) } ct = gc->chip_types; - ct->chip.irq_ack = irq_gc_ack; + ct->chip.irq_ack = irq_gc_ack_set_bit; ct->chip.irq_mask = irq_gc_mask_set_bit; ct->chip.irq_unmask = irq_gc_mask_clr_bit; ct->chip.irq_set_type = s5p64x0_irq_eint_set_type;