Date:2011-09-19 16:00:31 (12 years 6 months ago)
Author:Lars C.
Commit:61390f351969cc15a1780e3d5e4ed8159cd07cd0
Message:mfd: jz4740-adc: Fix generic irq chip ack function name.

In commit 659fb32d1b6("genirq: replace irq_gc_ack() with {set,clr}_bit
variants"), irq_gc_ack was renamed to irq_gc_ack_set_bit. The jz4740-adc
driver still uses the old name which results in a compile error.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Files: drivers/mfd/jz4740-adc.c (1 diff)

Change Details

drivers/mfd/jz4740-adc.c
273273    ct->regs.ack = JZ_REG_ADC_STATUS;
274274    ct->chip.irq_mask = irq_gc_mask_set_bit;
275275    ct->chip.irq_unmask = irq_gc_mask_clr_bit;
276    ct->chip.irq_ack = irq_gc_ack;
276    ct->chip.irq_ack = irq_gc_ack_set_bit;
277277
278278    irq_setup_generic_chip(gc, IRQ_MSK(5), 0, 0, IRQ_NOPROBE | IRQ_LEVEL);
279279

Archive Download the corresponding diff file



interactive