diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-16 15:11:32 -0600 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-10-30 20:07:16 +0100 |
commit | ba97899349a2a90e8799c79fdc1ab906bf439db4 (patch) | |
tree | 8bb8af095865b2b08ac680d4c030fe233e196993 /common | |
parent | 816605652dd062a655a077778ed0f5c9724646fd (diff) | |
download | u-boot-ba97899349a2a90e8799c79fdc1ab906bf439db4.zip u-boot-ba97899349a2a90e8799c79fdc1ab906bf439db4.tar.gz u-boot-ba97899349a2a90e8799c79fdc1ab906bf439db4.tar.bz2 |
video: Drop CONFIG_LCD_INFO
This option is not used anymore since the LCD implementation is being
removed. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/lcd.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/lcd.c b/common/lcd.c index 53ff8dd..36c97df 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -524,11 +524,6 @@ static void lcd_logo(void) { lcd_logo_plot(0, 0); -#ifdef CONFIG_LCD_INFO - lcd_set_col(LCD_INFO_X / VIDEO_FONT_WIDTH); - lcd_set_row(LCD_INFO_Y / VIDEO_FONT_HEIGHT); - lcd_show_board_info(); -#endif /* CONFIG_LCD_INFO */ } #ifdef CONFIG_SPLASHIMAGE_GUARD |