Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 256687
b: refs/heads/master
c: 910c8fb
h: refs/heads/master
i:
  256685: eaf342a
  256683: 72c53fe
  256679: bb392a8
  256671: e7583a3
v: v3
  • Loading branch information
David Jander authored and Grant Likely committed Jun 8, 2011
1 parent 9c086d7 commit cc0e073
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: 47732cb4fdee72e6ea4d2ae40d72da4d2cedf97e
refs/heads/master: 910c8fb6b4b8c9e0be576b6a78f4cccf228a4bfd
6 changes: 5 additions & 1 deletion trunk/drivers/gpio/gpio-pca953x.c
Original file line number Diff line number Diff line change
Expand Up @@ -474,12 +474,16 @@ static int pca953x_irq_setup(struct pca953x_chip *chip,
* this purpose.
*/
chip->irq_stat &= chip->reg_direction;
chip->irq_base = pdata->irq_base;
mutex_init(&chip->irq_lock);

chip->irq_base = irq_alloc_descs(-1, pdata->irq_base, chip->gpio_chip.ngpio, -1);
if (chip->irq_base < 0)
goto out_failed;

for (lvl = 0; lvl < chip->gpio_chip.ngpio; lvl++) {
int irq = lvl + chip->irq_base;

irq_clear_status_flags(irq, IRQ_NOREQUEST);
irq_set_chip_data(irq, chip);
irq_set_chip_and_handler(irq, &pca953x_irq_chip,
handle_simple_irq);
Expand Down

0 comments on commit cc0e073

Please sign in to comment.