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 /include/asm-generic | |
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 'include/asm-generic')
-rw-r--r-- | include/asm-generic/global_data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 8ca93ac5269..c4b2bb44973 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -68,7 +68,7 @@ struct global_data { * @mem_clk: memory clock rate in Hz */ unsigned long mem_clk; -#if defined(CONFIG_DM_VIDEO) +#if defined(CONFIG_VIDEO) /** * @fb_base: base address of frame buffer memory */ @@ -359,7 +359,7 @@ struct global_data { */ struct membuff console_in; #endif -#ifdef CONFIG_DM_VIDEO +#ifdef CONFIG_VIDEO /** * @video_top: top of video frame buffer area */ |