diff --git a/drivers/leds/leds-ktd2692.c b/drivers/leds/leds-ktd2692.c index fe05cd113b9d..2ae8c4d17ff8 100644 --- a/drivers/leds/leds-ktd2692.c +++ b/drivers/leds/leds-ktd2692.c @@ -295,14 +295,14 @@ static int ktd2692_parse_dt(struct ktd2692_context *led, struct device *dev, if (!dev->of_node) return -ENXIO; - led->ctrl_gpio = devm_gpiod_get(dev, "ctrl"); + led->ctrl_gpio = devm_gpiod_get(dev, "ctrl", GPIOD_ASIS); if (IS_ERR(led->ctrl_gpio)) { ret = PTR_ERR(led->ctrl_gpio); dev_err(dev, "cannot get ctrl-gpios %d\n", ret); return ret; } - led->aux_gpio = devm_gpiod_get(dev, "aux"); + led->aux_gpio = devm_gpiod_get(dev, "aux", GPIOD_ASIS); if (IS_ERR(led->aux_gpio)) { ret = PTR_ERR(led->aux_gpio); dev_err(dev, "cannot get aux-gpios %d\n", ret);