diff options
Diffstat (limited to 'drivers/gpio/gpio-pca953x.c')
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index 1b9dbf691ae7..babb7bd2ba59 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c | |||
@@ -608,7 +608,7 @@ static irqreturn_t pca953x_irq_handler(int irq, void *devid) | |||
608 | for (i = 0; i < NBANK(chip); i++) { | 608 | for (i = 0; i < NBANK(chip); i++) { |
609 | while (pending[i]) { | 609 | while (pending[i]) { |
610 | level = __ffs(pending[i]); | 610 | level = __ffs(pending[i]); |
611 | handle_nested_irq(irq_find_mapping(chip->gpio_chip.irqdomain, | 611 | handle_nested_irq(irq_find_mapping(chip->gpio_chip.irq.domain, |
612 | level + (BANK_SZ * i))); | 612 | level + (BANK_SZ * i))); |
613 | pending[i] &= ~(1 << level); | 613 | pending[i] &= ~(1 << level); |
614 | nhandled++; | 614 | nhandled++; |