diff options
author | Simon Glass | 2022-10-18 07:46:31 -0600 |
---|---|---|
committer | Anatolij Gustschin | 2022-10-30 20:07:17 +0100 |
commit | b86986c7b314f1378ca5be8df49310a6ce7302f8 (patch) | |
tree | 11f72c50e524ae5b37e934e9a5d0558c00c6ee97 /lib/efi_loader/efi_console.c | |
parent | 9330abfb4a00512213d34147b78d2041fd467c6e (diff) |
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 'lib/efi_loader/efi_console.c')
-rw-r--r-- | lib/efi_loader/efi_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c index ab83f8bf828..4d08dd3763a 100644 --- a/lib/efi_loader/efi_console.c +++ b/lib/efi_loader/efi_console.c @@ -353,7 +353,7 @@ void efi_setup_console_size(void) int rows = 25, cols = 80; int ret = -ENODEV; - if (IS_ENABLED(CONFIG_DM_VIDEO)) + if (IS_ENABLED(CONFIG_VIDEO)) ret = query_vidconsole(&rows, &cols); if (ret) ret = query_console_serial(&rows, &cols); |