Skip to content

Commit

Permalink
ARM: S5P64X0: Replace irq_gc_ack() with irq_gc_ack_set_bit()
Browse files Browse the repository at this point in the history
According to commit 659fb32
("replace irq_gc_ack() with {set,clr}_bit variants"), this
should be fixed.

Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Kukjin Kim committed Aug 19, 2011
1 parent 93ee7a9 commit ac0d151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-s5p64x0/irq-eint.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ac0d151

Please sign in to comment.