]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
gpio: gpio-mxc: Fix: higher 16 GPIOs usable as wake source
authorPhilipp Rosenberger <p.rosenberger@linutronix.de>
Wed, 12 Jul 2017 08:36:39 +0000 (10:36 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 1 Aug 2017 08:37:06 +0000 (10:37 +0200)
In the function gpio_set_wake_irq(), port->irq_high is only checked for
zero. As platform_get_irq() returns a value less then zero if no interrupt
was found, any gpio >= 16 was handled like an irq_high interrupt was
available. On iMX27 for example no high interrupt is available. This lead
to the problem that only some gpios (the lower 16) were useable as wake
sources.

Signed-off-by: Philipp Rosenberger <p.rosenberger@linutronix.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-mxc.c

index 3abea3f0b307e143848686dd935ee0745a414eec..92692251ade1a13b7c2df99f97598584c3c05081 100644 (file)
@@ -424,6 +424,9 @@ static int mxc_gpio_probe(struct platform_device *pdev)
                return PTR_ERR(port->base);
 
        port->irq_high = platform_get_irq(pdev, 1);
+       if (port->irq_high < 0)
+               port->irq_high = 0;
+
        port->irq = platform_get_irq(pdev, 0);
        if (port->irq < 0)
                return port->irq;