diff options
author | Simon Glass | 2022-01-23 07:04:08 -0700 |
---|---|---|
committer | Anatolij Gustschin | 2022-03-28 20:17:07 +0200 |
commit | 1fa43cad862591fe8917a0c1fe2f21f062c7502b (patch) | |
tree | a17f830e6243917cd145007b1bee7bf0291ea0e7 /cmd/bmp.c | |
parent | 82975f8a9ec290b4cf2f9a228dd78761b35565ea (diff) |
video: Drop references to CONFIG_VIDEO et al
Drop the Kconfigs which are not used and all references to them. In
particular, this drops CONFIG_VIDEO to avoid confusion and allow us to
eventually rename CONFIG_DM_VIDEO to CONFIG_VIDEO.
Also drop the prototype for video_get_info_str() which is no-longer used.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Jason Liu <jason.hui.liu@nxp.com>
Diffstat (limited to 'cmd/bmp.c')
-rw-r--r-- | cmd/bmp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/bmp.c b/cmd/bmp.c index 071ba90b435..45f4c1296de 100644 --- a/cmd/bmp.c +++ b/cmd/bmp.c @@ -268,10 +268,8 @@ int bmp_display(ulong addr, int x, int y) } #elif defined(CONFIG_LCD) ret = lcd_display_bitmap(addr, x, y); -#elif defined(CONFIG_VIDEO) - ret = video_display_bitmap(addr, x, y); #else -# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO +# error bmp_display() requires CONFIG_LCD #endif if (bmp_alloc_addr) |