Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242947
b: refs/heads/master
c: 77eda96
h: refs/heads/master
i:
  242945: d84a1f6
  242943: 692b4e3
v: v3
  • Loading branch information
Thomas Gleixner authored and Samuel Ortiz committed Mar 26, 2011
1 parent 7e5fc58 commit b91944b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 73a6839fdb7f3f5ac7bfaee0796dd7647b9c9376
refs/heads/master: 77eda96691f5e39973f2f2667a28e57e852f559d
6 changes: 2 additions & 4 deletions trunk/drivers/mfd/htc-egpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ static struct irq_chip egpio_muxed_chip = {

static void egpio_handler(unsigned int irq, struct irq_desc *desc)
{
struct egpio_info *ei = get_irq_data(irq);
struct egpio_info *ei = irq_desc_get_handler_data(desc);
int irqpin;

/* Read current pins. */
Expand All @@ -113,9 +113,7 @@ static void egpio_handler(unsigned int irq, struct irq_desc *desc)
for_each_set_bit(irqpin, &readval, ei->nirqs) {
/* Run irq handler */
pr_debug("got IRQ %d\n", irqpin);
irq = ei->irq_start + irqpin;
desc = irq_to_desc(irq);
desc->handle_irq(irq, desc);
generic_handle_irq(ei->irq_start + irqpin);
}
}

Expand Down

0 comments on commit b91944b

Please sign in to comment.