diff options
author | Laurent Pinchart <[email protected]> | 2014-07-08 12:46:46 +0200 |
---|---|---|
committer | Linus Walleij <[email protected]> | 2014-07-15 20:55:15 +0200 |
commit | fe132649b5b28c19bc657d167c232180774739f8 (patch) | |
tree | 83b40b59e1d17538fdf23e7e4c4048fcd1665d31 | |
parent | 9963b53693c5fd20405ea8feb07c5a8626380d52 (diff) |
gpio: rcar: Add support for DT IRQ flags
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 <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
-rw-r--r-- | drivers/gpio/gpio-rcar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c index 0c9f803fc1ac..b6ae89ea8811 100644 --- a/drivers/gpio/gpio-rcar.c +++ b/drivers/gpio/gpio-rcar.c @@ -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 { |