summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:44:27 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:40 -0500
commit1f69cbe1f129136ae1a38b0a68660bfce72df629 (patch)
tree50f8163f867150c04b60cf3742d5f11a8196b3e4 /common
parent0ff8bb872423f7433b0165cbc10d23be1771af7c (diff)
Correct SPL uses of VIDEO
This converts 2 usages of this option to the non-SPL form, since there is no SPL_VIDEO defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/fdt_simplefb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fdt_simplefb.c b/common/fdt_simplefb.c
index 71d4c8fde9..282c34fe0b 100644
--- a/common/fdt_simplefb.c
+++ b/common/fdt_simplefb.c
@@ -82,7 +82,7 @@ int fdt_simplefb_enable_existing_node(void *blob)
return fdt_simplefb_configure_node(blob, off);
}
-#if CONFIG_IS_ENABLED(VIDEO)
+#if IS_ENABLED(CONFIG_VIDEO)
int fdt_simplefb_enable_and_mem_rsv(void *blob)
{
struct fdt_memory mem;