diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-12 03:21:45 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-12 03:21:45 +0200 |
commit | ee8b890e1e7fd5fc8258a713d7c868324e67b8c0 (patch) | |
tree | b1a0683e2100df71f6418ac21402b2b6500f7682 | |
parent | Merge tag 'arm-soc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/ar... (diff) | |
parent | gpio: pca953x: fix irq_domain_add_simple usage (diff) | |
download | linux-ee8b890e1e7fd5fc8258a713d7c868324e67b8c0.tar.xz linux-ee8b890e1e7fd5fc8258a713d7c868324e67b8c0.zip |
Merge tag 'gpio-fixes-v3.9-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio
Pull GPIO fix from Linus Walleij:
"Oneliner fix for the PCA 953x driver."
* tag 'gpio-fixes-v3.9-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio:
gpio: pca953x: fix irq_domain_add_simple usage
-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 24059462c87f..9391cf16e990 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -575,7 +575,7 @@ static int pca953x_irq_setup(struct pca953x_chip *chip, chip->gpio_chip.ngpio, irq_base, &pca953x_irq_simple_ops, - NULL); + chip); if (!chip->domain) return -ENODEV; |