gpio: idt3243x: Fix return value check in idt_gpio_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Tue, 8 Jun 2021 14:38:53 +0000 (14:38 +0000)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 11 Jun 2021 18:57:59 +0000 (20:57 +0200)
In case of error, the function devm_platform_ioremap_resource_byname()
returns ERR_PTR() and never returns NULL. The NULL test in the return
value check should be replaced with IS_ERR().

Fixes: 4195926aedca ("gpio: Add support for IDT 79RC3243x GPIO controller")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpio-idt3243x.c

index e961acee1571eaaa8ae8744ad0c27f4188e6ae0c..50003ad2e58981c3b4ce6bc1546af5e922adfc75 100644 (file)
@@ -142,8 +142,8 @@ static int idt_gpio_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        ctrl->gpio = devm_platform_ioremap_resource_byname(pdev, "gpio");
-       if (!ctrl->gpio)
-               return -ENOMEM;
+       if (IS_ERR(ctrl->gpio))
+               return PTR_ERR(ctrl->gpio);
 
        ctrl->gc.parent = dev;
 
@@ -160,8 +160,8 @@ static int idt_gpio_probe(struct platform_device *pdev)
 
        if (device_property_read_bool(dev, "interrupt-controller")) {
                ctrl->pic = devm_platform_ioremap_resource_byname(pdev, "pic");
-               if (!ctrl->pic)
-                       return -ENOMEM;
+               if (IS_ERR(ctrl->pic))
+                       return PTR_ERR(ctrl->pic);
 
                parent_irq = platform_get_irq(pdev, 0);
                if (!parent_irq)