diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-18 07:46:31 -0600 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-10-30 20:07:17 +0100 |
commit | b86986c7b314f1378ca5be8df49310a6ce7302f8 (patch) | |
tree | 11f72c50e524ae5b37e934e9a5d0558c00c6ee97 /common/fdt_simplefb.c | |
parent | 9330abfb4a00512213d34147b78d2041fd467c6e (diff) | |
download | u-boot-b86986c7b314f1378ca5be8df49310a6ce7302f8.tar.gz |
video: Rename CONFIG_DM_VIDEO to CONFIG_VIDEO
Now that all the old code is gone, rename this option. Driver model
migration is now complete.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/fdt_simplefb.c')
-rw-r--r-- | common/fdt_simplefb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fdt_simplefb.c b/common/fdt_simplefb.c index 951956430c..71d4c8fde9 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(DM_VIDEO) +#if CONFIG_IS_ENABLED(VIDEO) int fdt_simplefb_enable_and_mem_rsv(void *blob) { struct fdt_memory mem; |