From: Nikhil M Jain Date: Tue, 31 Jan 2023 10:05:16 +0000 (+0530) Subject: drivers: video: simple_panel: make simple panel independent of backlight X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=3ebe3c703bf549c740f5bcc08289c2bab6aca1ca;p=u-boot.git drivers: video: simple_panel: make simple panel independent of backlight This patch updates the necessary Kconfigs to make simple panel driver independent of backlight driver and compiling backlight related code in simple-panel driver conditionally to when user has set CONFIG_BACKLIGHT. Signed-off-by: Nikhil M Jain Reviewed-by: Simon Glass --- diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c index c8f7022ea6..91c91ee75d 100644 --- a/drivers/video/simple_panel.c +++ b/drivers/video/simple_panel.c @@ -63,12 +63,15 @@ static int simple_panel_of_to_plat(struct udevice *dev) return ret; } } + ret = uclass_get_device_by_phandle(UCLASS_PANEL_BACKLIGHT, dev, - "backlight", &priv->backlight); + "backlight", &priv->backlight); if (ret) { debug("%s: Cannot get backlight: ret=%d\n", __func__, ret); - return log_ret(ret); + if (ret != -ENOENT) + return log_ret(ret); } + ret = gpio_request_by_name(dev, "enable-gpios", 0, &priv->enable, GPIOD_IS_OUT); if (ret) {