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 /include/lcd.h | |
parent | 816605652dd062a655a077778ed0f5c9724646fd (diff) |
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 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/lcd.h b/include/lcd.h index 751b0032ef..b4820037b2 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -144,14 +144,6 @@ void lcd_sync(void); #define LCD_COLOR16 4 #define LCD_COLOR32 5 -#if defined(CONFIG_LCD_LOGO) -#define LCD_INFO_X (BMP_LOGO_WIDTH + 4 * VIDEO_FONT_WIDTH) -#define LCD_INFO_Y VIDEO_FONT_HEIGHT -#else -#define LCD_INFO_X VIDEO_FONT_WIDTH -#define LCD_INFO_Y VIDEO_FONT_HEIGHT -#endif - /* Default to 8bpp if bit depth not specified */ #ifndef LCD_BPP #define LCD_BPP LCD_COLOR8 |