diff options
| author | Linus Walleij <linus.walleij@linaro.org> | 2012-10-23 11:44:42 +0200 | 
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2012-10-23 11:52:25 +0200 | 
| commit | 38843e29217bc6b6fce80a5bf19d1636ee337c77 (patch) | |
| tree | e4609b23ad98eed544798297ba861ff395fce233 | |
| parent | 832b6cdf72fdc32cacba242a749402d28f4648f0 (diff) | |
pinctrl/nomadik: pass DT node to the irqdomain
When creating the simple irqdomain, pass the DT node pointer along,
as is apropriate.
Acked-by: Lee Jones <lee.jones@linaro.org>
Reported-by: Gabriel Fernandez <gabriel.fernandez@stericsson.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/pinctrl/pinctrl-nomadik.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/pinctrl/pinctrl-nomadik.c b/drivers/pinctrl/pinctrl-nomadik.c index 8bfbad60fcee..cf82d9ce4dee 100644 --- a/drivers/pinctrl/pinctrl-nomadik.c +++ b/drivers/pinctrl/pinctrl-nomadik.c @@ -1387,7 +1387,7 @@ static int __devinit nmk_gpio_probe(struct platform_device *dev)  	if (!np)  		irq_start = NOMADIK_GPIO_TO_IRQ(pdata->first_gpio); -	nmk_chip->domain = irq_domain_add_simple(NULL, +	nmk_chip->domain = irq_domain_add_simple(np,  				NMK_GPIO_PER_CHIP, irq_start,  				&nmk_gpio_irq_simple_ops, nmk_chip);  	if (!nmk_chip->domain) { | 
