]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
gpio: mvebu: Add missing breaks in mvebu_gpio_irq_set_type
authorAxel Lin <axel.lin@ingics.com>
Sun, 30 Sep 2012 08:23:27 +0000 (16:23 +0800)
committerJason Cooper <jason@lakedaemon.net>
Wed, 17 Oct 2012 17:40:18 +0000 (17:40 +0000)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Andrew Lunn <andrew@lunn.ch>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
drivers/gpio/gpio-mvebu.c

index 902af437eaf26e9dc1b5c2cf3f1e902b70d5e237..7a874129e5d8f3634b68ea45d5d73a2a316f8bae 100644 (file)
@@ -381,11 +381,13 @@ static int mvebu_gpio_irq_set_type(struct irq_data *d, unsigned int type)
                u = readl_relaxed(mvebu_gpioreg_in_pol(mvchip));
                u &= ~(1 << pin);
                writel_relaxed(u, mvebu_gpioreg_in_pol(mvchip));
+               break;
        case IRQ_TYPE_EDGE_FALLING:
        case IRQ_TYPE_LEVEL_LOW:
                u = readl_relaxed(mvebu_gpioreg_in_pol(mvchip));
                u |= 1 << pin;
                writel_relaxed(u, mvebu_gpioreg_in_pol(mvchip));
+               break;
        case IRQ_TYPE_EDGE_BOTH: {
                u32 v;
 
@@ -401,6 +403,7 @@ static int mvebu_gpio_irq_set_type(struct irq_data *d, unsigned int type)
                else
                        u &= ~(1 << pin);       /* rising */
                writel_relaxed(u, mvebu_gpioreg_in_pol(mvchip));
+               break;
        }
        }
        return 0;