gpio: aspeed: fix return value check in aspeed_gpio_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 15 Sep 2016 01:30:32 +0000 (01:30 +0000)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 15 Sep 2016 12:23:40 +0000 (14:23 +0200)
In case of error, the function devm_ioremap_resource() returns ERR_PTR()
and never returns NULL. The NULL test in the return value check should
be replaced with IS_ERR().

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-aspeed.c

index 9f7266e05f0abfdd1eea9d05e32f3755fc27f39a..8aa340677f65190661926230368cc47ba2a7b8a3 100644 (file)
@@ -413,8 +413,8 @@ static int __init aspeed_gpio_probe(struct platform_device *pdev)
                return -ENXIO;
 
        gpio->base = devm_ioremap_resource(&pdev->dev, res);
-       if (!gpio->base)
-               return -ENOMEM;
+       if (IS_ERR(gpio->base))
+               return PTR_ERR(gpio->base);
 
        spin_lock_init(&gpio->lock);