Re: [PATCH v2 2/2] backlight: Add Kinetic KTD2801 driver
From: Christophe JAILLET <hidden>
Date: 2024-01-19 17:29:35
Also in:
dri-devel, linux-devicetree, linux-leds, lkml
From: Christophe JAILLET <hidden>
Date: 2024-01-19 17:29:35
Also in:
dri-devel, linux-devicetree, linux-leds, lkml
Le 18/01/2024 à 18:32, Duje Mihanović a écrit :
Add driver for the Kinetic KTD2801 backlight driver. Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr> ---
...
+ ktd2801->gpiod = devm_gpiod_get(dev, "ctrl", GPIOD_OUT_HIGH); + if (IS_ERR(ktd2801->gpiod)) + return dev_err_probe(dev, PTR_ERR(dev),
PTR_ERR(ktd2801->gpiod); ? CJ