Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 227882
b: refs/heads/master
c: 456dc30
h: refs/heads/master
v: v3
  • Loading branch information
Feng Tang authored and Matthew Garrett committed Jan 7, 2011
1 parent 31860bb commit 332fe72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 213658516fd5e125eb7a97995f6cae8996f8015b
refs/heads/master: 456dc301cc3b547b2a674de3028f53fb1453e532
6 changes: 5 additions & 1 deletion trunk/drivers/platform/x86/intel_pmic_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,11 @@ static void pmic_irq_handler(unsigned irq, struct irq_desc *desc)
generic_handle_irq(pg->irq_base + gpio);
}
}
desc->chip->eoi(irq);

if (desc->chip->irq_eoi)
desc->chip->irq_eoi(irq_get_irq_data(irq));
else
dev_warn(pg->chip.dev, "missing EOI handler for irq %d\n", irq);
}

static int __devinit platform_pmic_gpio_probe(struct platform_device *pdev)
Expand Down

0 comments on commit 332fe72

Please sign in to comment.