1
0
Fork 0

gpio: cs5535: Simplify the return expression of cs5535_gpio_probe()

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>
zero-sugar-mainline-defconfig
Zheng Yongjun 2020-12-10 21:56:09 +08:00 committed by Linus Walleij
parent 9d55221995
commit 9777d0bfda
1 changed files with 2 additions and 6 deletions

View 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 = {