mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
lcd_console: remove unused defines
CONSOLE_ROW_SECOND, CONSOLE_ROW_LAST, and CONSOLE_SCROLL_SIZE are unused. Remove them. Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Cc: Anatolij Gustschin <agust@denx.de> Cc: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
904672ee48
commit
73b462b845
1 changed files with 0 additions and 4 deletions
|
@ -12,11 +12,7 @@
|
||||||
|
|
||||||
#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * lcd_line_length)
|
#define CONSOLE_ROW_SIZE (VIDEO_FONT_HEIGHT * lcd_line_length)
|
||||||
#define CONSOLE_ROW_FIRST lcd_console_address
|
#define CONSOLE_ROW_FIRST lcd_console_address
|
||||||
#define CONSOLE_ROW_SECOND (lcd_console_address + CONSOLE_ROW_SIZE)
|
|
||||||
#define CONSOLE_ROW_LAST (lcd_console_address + CONSOLE_SIZE \
|
|
||||||
- CONSOLE_ROW_SIZE)
|
|
||||||
#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * console_rows)
|
#define CONSOLE_SIZE (CONSOLE_ROW_SIZE * console_rows)
|
||||||
#define CONSOLE_SCROLL_SIZE (CONSOLE_SIZE - CONSOLE_ROW_SIZE)
|
|
||||||
|
|
||||||
static short console_curr_col;
|
static short console_curr_col;
|
||||||
static short console_curr_row;
|
static short console_curr_row;
|
||||||
|
|
Loading…
Reference in a new issue