summaryrefslogtreecommitdiffstats
path: root/include/lcd.h
diff options
context:
space:
mode:
authorNikita Kiryanov <nikita@compulab.co.il>2014-12-08 17:14:44 +0200
committerAnatolij Gustschin <agust@denx.de>2015-01-10 17:53:36 +0100
commit88b326a31e4b7c2b6550980944b9b72f40c1bda0 (patch)
tree5d494ce9b74c813e5779da54adbfba79aacc9fc5 /include/lcd.h
parent4d03634e5da40dc092b6e5b985f74aedfe04f81e (diff)
downloadtalos-obmc-uboot-88b326a31e4b7c2b6550980944b9b72f40c1bda0.tar.gz
talos-obmc-uboot-88b326a31e4b7c2b6550980944b9b72f40c1bda0.zip
lcd: make lcd_drawchars() independant of lcd_base
lcd_logo() has the following return value: #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO) return (void *)((ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length); #else return (void *)lcd_base; #endif This return value gets assigned to lcd_console_address. lcd_console_address is not assigned or modified anywhere else. Thus: #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO): y' = BMP_LOGO_HEIGHT + y; lcd_base + y' * lcd_line_length == lcd_base + (BMP_LOGO_HEIGHT + y) * lcd_line_length == lcd_base + BMP_LOGO_HEIGHT * lcd_line_length + y * lcd_line_length == lcd_console_address + y * lcd_line_length #else lcd_base + y * lcd_line_length == lcd_console_address + y * lcd_line_length #endif This is a preparatory step for extracting lcd console code into its own file. Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Cc: Anatolij Gustschin <agust@denx.de> Cc: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/lcd.h')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud