Browse Source

Merge branch 'gpio/merge' of git://git.secretlab.ca/git/linux-2.6

* 'gpio/merge' of git://git.secretlab.ca/git/linux-2.6:
  gpio/langwell_gpio: ack the correct bit for langwell gpio interrupts
Linus Torvalds 14 years ago
parent
commit
902daf6580
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gpio/langwell_gpio.c

+ 1 - 1
drivers/gpio/langwell_gpio.c

@@ -223,7 +223,7 @@ static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
 		gedr = gpio_reg(&lnw->chip, base, GEDR);
 		gedr = gpio_reg(&lnw->chip, base, GEDR);
 		pending = readl(gedr);
 		pending = readl(gedr);
 		while (pending) {
 		while (pending) {
-			gpio = __ffs(pending) - 1;
+			gpio = __ffs(pending);
 			mask = BIT(gpio);
 			mask = BIT(gpio);
 			pending &= ~mask;
 			pending &= ~mask;
 			/* Clear before handling so we can't lose an edge */
 			/* Clear before handling so we can't lose an edge */