gpio: cs5535: Simplify the return expression of cs5535_gpio_probe()
authorZheng Yongjun <zhengyongjun3@huawei.com>
Thu, 10 Dec 2020 13:56:09 +0000 (21:56 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Sat, 12 Dec 2020 00:37:46 +0000 (01:37 +0100)
Simplify the return expression.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201210135609.1372-1-zhengyongjun3@huawei.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-cs5535.c

index 53b24e3..6da3a24 100644 (file)
@@ -345,12 +345,8 @@ static int cs5535_gpio_probe(struct platform_device *pdev)
                                mask_orig, mask);
 
        /* finally, register with the generic GPIO API */
-       err = devm_gpiochip_add_data(&pdev->dev, &cs5535_gpio_chip.chip,
-                                    &cs5535_gpio_chip);
-       if (err)
-               return err;
-
-       return 0;
+       return devm_gpiochip_add_data(&pdev->dev, &cs5535_gpio_chip.chip,
+                                     &cs5535_gpio_chip);
 }
 
 static struct platform_driver cs5535_gpio_driver = {