Skip to content

Commit

Permalink
mfd: Fix ASIC3 build with GENERIC_HARDIRQS_NO_DEPRECATED
Browse files Browse the repository at this point in the history
Signed-off-by: Lennert Buytenhek <buytenh@secretlab.ca>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Lennert Buytenhek authored and Samuel Ortiz committed Mar 2, 2011
1 parent dd9c154 commit 0a85b48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/mfd/asic3.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ static void asic3_irq_demux(unsigned int irq, struct irq_desc *desc)
unsigned long flags;
struct asic3 *asic;

desc->chip->ack(irq);
desc->irq_data.chip->irq_ack(&desc->irq_data);

asic = desc->handler_data;
asic = get_irq_data(irq);

for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) {
u32 status;
Expand Down

0 comments on commit 0a85b48

Please sign in to comment.