summaryrefslogtreecommitdiff
path: root/drivers/video/imx
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 17:54:44 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:41 -0500
commitba490b251c945bc182744c2ab8f942334f3cd588 (patch)
treedc11be4d5078333752235dba9c771e80465b2b95 /drivers/video/imx
parent68be8d95de0a095d624230fe3c43ab3d674bd5b0 (diff)
downloadu-boot-ba490b251c945bc182744c2ab8f942334f3cd588.tar.gz
Correct SPL use of PANEL
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>
Diffstat (limited to 'drivers/video/imx')
-rw-r--r--drivers/video/imx/mxc_ipuv3_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/imx/mxc_ipuv3_fb.c b/drivers/video/imx/mxc_ipuv3_fb.c
index 8b01a1be11..7e60385bcf 100644
--- a/drivers/video/imx/mxc_ipuv3_fb.c
+++ b/drivers/video/imx/mxc_ipuv3_fb.c
@@ -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);