diff options
author | Hannes Schmelzer <oe5hpm@oevsv.at> | 2018-07-06 15:41:21 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-19 17:03:33 -0400 |
commit | 959636797069c7ea77b44f4f52dd6851f9861737 (patch) | |
tree | 4389829caa9f6e7bcd78642860cbeab334e71442 /board/BuR | |
parent | e22597048a7bf6814ebf45f46eb891e34dbfd31f (diff) | |
download | u-boot-959636797069c7ea77b44f4f52dd6851f9861737.tar.gz u-boot-959636797069c7ea77b44f4f52dd6851f9861737.tar.xz u-boot-959636797069c7ea77b44f4f52dd6851f9861737.zip |
board/BuR/brppt1: drop LCD-support
On this linux target long time ago the OS is using DRM driver for
handling video output, the pre initialization of u-boot and the display
summary screen is obsolete. With this patch we drop the LCD-support from
thisd board.
Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>
Diffstat (limited to 'board/BuR')
-rw-r--r-- | board/BuR/brppt1/board.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/board/BuR/brppt1/board.c b/board/BuR/brppt1/board.c index 41db449afc..ff2a3a2426 100644 --- a/board/BuR/brppt1/board.c +++ b/board/BuR/brppt1/board.c @@ -26,7 +26,6 @@ #include <i2c.h> #include <power/tps65217.h> #include "../common/bur_common.h" -#include <lcd.h> #include <watchdog.h> DECLARE_GLOBAL_DATA_PTR; @@ -160,9 +159,6 @@ int board_init(void) int board_late_init(void) { if (0 == gpio_get_value(REPSWITCH)) { - lcd_position_cursor(1, 8); - lcd_puts( - "switching to network-console ... "); env_set("bootcmd", "run netconsole"); } return 0; |