diff options
author | Simon Glass | 2022-10-16 15:08:59 -0600 |
---|---|---|
committer | Anatolij Gustschin | 2022-10-30 20:07:16 +0100 |
commit | 816605652dd062a655a077778ed0f5c9724646fd (patch) | |
tree | f1445a9d3cd6f655602d12c02c558b5e5d2b4d5e /api | |
parent | 817f93422bf36cafe636cf093a5fce3ebe94d5c6 (diff) |
video: Drop CONFIG_LCD_INFO_BELOW_LOGO
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 'api')
-rw-r--r-- | api/api_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/api_display.c b/api/api_display.c index 4f2cdd7330e..84debac48af 100644 --- a/api/api_display.c +++ b/api/api_display.c @@ -10,7 +10,7 @@ #include <video_font.h> /* Get font width and height */ /* lcd.h needs BMP_LOGO_HEIGHT to calculate CONSOLE_ROWS */ -#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO) +#if defined(CONFIG_LCD_LOGO) #include <bmp_logo.h> #endif |