aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-23 07:04:02 -0700
committerAnatolij Gustschin <agust@denx.de>2022-03-28 20:14:24 +0200
commit814dd92bdc22e2949e70b86440f0a83b50e6bc7a (patch)
treec762a9ddc24bd96c3e30e0957000cdaea7f8e955 /cmd
parent34d2b7f20369d62c0f091d6572a8c0ea4655cf14 (diff)
downloadu-boot-814dd92bdc22e2949e70b86440f0a83b50e6bc7a.zip
u-boot-814dd92bdc22e2949e70b86440f0a83b50e6bc7a.tar.gz
u-boot-814dd92bdc22e2949e70b86440f0a83b50e6bc7a.tar.bz2
video: Drop cfg_console
The non-driver model video support was removed two years ago. Drop this driver, which is only used by nokia_rx51. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/cls.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/cls.c b/cmd/cls.c
index bdeb497..502d5ed 100644
--- a/cmd/cls.c
+++ b/cmd/cls.c
@@ -28,8 +28,6 @@ static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc,
if (video_clear(dev))
return CMD_RET_FAILURE;
#endif
-#elif defined(CONFIG_CFB_CONSOLE)
- video_clear();
#elif defined(CONFIG_LCD)
lcd_clear();
#else