summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDavid Jander <david@protonic.nl>2011-06-01 08:57:27 (GMT)
committerGrant Likely <grant.likely@secretlab.ca>2011-06-06 16:09:42 (GMT)
commit121a2dd860f8348fb014b660f133a0cb9a16273e (patch)
tree7a1391d7fccdea56c974ceab6f9bed5fc202ec91 /drivers
parentc6b52c13de4415ed5774be8c076685715de56096 (diff)
downloadlinux-fsl-qoriq-121a2dd860f8348fb014b660f133a0cb9a16273e.tar.xz
gpio/pca953x.c: Interrupt pin is active-low
The interrupt pin of the PCA953x is active low, and on the rising edge no interrupt should be produced. Signed-off-by: David Jander <david@protonic.nl> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpio/pca953x.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpio/pca953x.c b/drivers/gpio/pca953x.c
index 0451d7a..63022b1 100644
--- a/drivers/gpio/pca953x.c
+++ b/drivers/gpio/pca953x.c
@@ -493,7 +493,6 @@ static int pca953x_irq_setup(struct pca953x_chip *chip,
ret = request_threaded_irq(client->irq,
NULL,
pca953x_irq_handler,
- IRQF_TRIGGER_RISING |
IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
dev_name(&client->dev), chip);
if (ret) {