|
@@ -270,15 +270,15 @@ static int ktd2692_parse_dt(struct ktd2692_context *led, struct device *dev,
|
|
|
return -ENXIO;
|
|
|
|
|
|
led->ctrl_gpio = devm_gpiod_get(dev, "ctrl", GPIOD_ASIS);
|
|
|
- if (IS_ERR(led->ctrl_gpio)) {
|
|
|
- ret = PTR_ERR(led->ctrl_gpio);
|
|
|
+ ret = PTR_ERR_OR_ZERO(led->ctrl_gpio);
|
|
|
+ if (ret) {
|
|
|
dev_err(dev, "cannot get ctrl-gpios %d\n", ret);
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
led->aux_gpio = devm_gpiod_get(dev, "aux", GPIOD_ASIS);
|
|
|
- if (IS_ERR(led->aux_gpio)) {
|
|
|
- ret = PTR_ERR(led->aux_gpio);
|
|
|
+ ret = PTR_ERR_OR_ZERO(led->aux_gpio);
|
|
|
+ if (ret) {
|
|
|
dev_err(dev, "cannot get aux-gpios %d\n", ret);
|
|
|
return ret;
|
|
|
}
|