diff options
author | Wei Yongjun | 2016-09-15 03:30:32 +0200 |
---|---|---|
committer | Linus Walleij | 2016-09-15 14:23:40 +0200 |
commit | 7f8b96570291def5104cec6f68bae09bd55b691a (patch) | |
tree | 62102f1ec1cdeef6881a5125c1b9865a5cc9339c /drivers/gpio | |
parent | gpio: don't include module.h in shared driver header (diff) | |
download | kernel-qcow2-linux-7f8b96570291def5104cec6f68bae09bd55b691a.tar.gz kernel-qcow2-linux-7f8b96570291def5104cec6f68bae09bd55b691a.tar.xz kernel-qcow2-linux-7f8b96570291def5104cec6f68bae09bd55b691a.zip |
gpio: aspeed: fix return value check in aspeed_gpio_probe()
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-aspeed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c index 9f7266e05f0a..8aa340677f65 100644 --- a/drivers/gpio/gpio-aspeed.c +++ b/drivers/gpio/gpio-aspeed.c @@ -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); |