]> git.baikalelectronics.ru Git - uboot.git/commitdiff
Correct SPL use of PANEL
authorSimon Glass <sjg@chromium.org>
Mon, 6 Feb 2023 00:54:44 +0000 (17:54 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:41 +0000 (07:41 -0500)
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_PANEL defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/video/imx/mxc_ipuv3_fb.c

index 8b01a1be1129c7835f5b140c2b6453bcbc5ce6cb..7e60385bcfa512a68d88e9b2d8d94c217fe30a75 100644 (file)
@@ -615,7 +615,7 @@ static int ipuv3_video_probe(struct udevice *dev)
        if (ret < 0)
                return ret;
 #endif
-       if (CONFIG_IS_ENABLED(PANEL)) {
+       if (IS_ENABLED(CONFIG_PANEL)) {
                struct udevice *panel_dev;
 
                ret = uclass_get_device(UCLASS_PANEL, 0, &panel_dev);