cmd: remove deprecated LCD support
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 14 Jul 2022 06:53:46 +0000 (08:53 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 4 Aug 2022 19:32:20 +0000 (15:32 -0400)
No board uses lcd_clear() anymore. So we can remove support for it.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
cmd/cls.c

index 502d5ed..ba36220 100644 (file)
--- a/cmd/cls.c
+++ b/cmd/cls.c
@@ -8,7 +8,6 @@
 #include <common.h>
 #include <command.h>
 #include <dm.h>
-#include <lcd.h>
 #include <video.h>
 
 #define CSI "\x1b["
@@ -20,19 +19,12 @@ static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc,
 
        /*  Send clear screen and home */
        printf(CSI "2J" CSI "1;1H");
-#if defined(CONFIG_DM_VIDEO)
-#if !defined(CONFIG_VIDEO_ANSI)
-       if (uclass_first_device_err(UCLASS_VIDEO, &dev))
-               return CMD_RET_FAILURE;
-
-       if (video_clear(dev))
-               return CMD_RET_FAILURE;
-#endif
-#elif defined(CONFIG_LCD)
-       lcd_clear();
-#else
-       return CMD_RET_FAILURE;
-#endif
+       if (CONFIG_IS_ENABLED(DM_VIDEO) && !CONFIG_IS_ENABLED(VIDEO_ANSI)) {
+               if (uclass_first_device_err(UCLASS_VIDEO, &dev))
+                       return CMD_RET_FAILURE;
+               if (video_clear(dev))
+                       return CMD_RET_FAILURE;
+       }
        return CMD_RET_SUCCESS;
 }