gpio: rcar: Add support for DT IRQ flags
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tue, 8 Jul 2014 10:46:46 +0000 (12:46 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 15 Jul 2014 18:55:15 +0000 (20:55 +0200)
The gpio-rcar driver has no IRQ domain OF xlate function and thus
ignores IRQ flags specified in DT. Fix this by using the two-cell xlate
function.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-rcar.c

index 0c9f803..b6ae89e 100644 (file)
@@ -284,6 +284,7 @@ static int gpio_rcar_irq_domain_map(struct irq_domain *h, unsigned int irq,
 
 static struct irq_domain_ops gpio_rcar_irq_domain_ops = {
        .map    = gpio_rcar_irq_domain_map,
+       .xlate  = irq_domain_xlate_twocell,
 };
 
 struct gpio_rcar_info {