pinctrl/nomadik: fix null in irqdomain errorpath
authorLinus Walleij <linus.walleij@linaro.org>
Fri, 10 Aug 2012 09:07:51 +0000 (11:07 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 17 Aug 2012 09:09:58 +0000 (11:09 +0200)
The irqdomain conversion failed to notice that we do not always
have a DT node to dereference, fix this up by using a simple
dev_err() that also tells the name of the device.

Cc: Loic Pallardy <loic.pallardy@st.com>
Cc: Patrice Chotard <patrice.chotard@stericsson.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-nomadik.c

index ec6ac501b23a077559f303adc7fb1e07bf68698c..3dde6537adb878d7986a96b2dba528d41cf77d1a 100644 (file)
@@ -1292,7 +1292,7 @@ static int __devinit nmk_gpio_probe(struct platform_device *dev)
                                                NOMADIK_GPIO_TO_IRQ(pdata->first_gpio),
                                                0, &nmk_gpio_irq_simple_ops, nmk_chip);
        if (!nmk_chip->domain) {
-               pr_err("%s: Failed to create irqdomain\n", np->full_name);
+               dev_err(&dev->dev, "failed to create irqdomain\n");
                ret = -ENOSYS;
                goto out;
        }
This page took 0.025492 seconds and 5 git commands to generate.