summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2015-08-04 15:49:50 +0200
committerTom Rini <trini@konsulko.com>2015-08-13 07:19:34 -0400
commit3b96b90966615443e31463183d7e575a093ce0b4 (patch)
tree736552679064b2a83daa826c82776c8bd9b98e30 /common
parent181bd9dc61d2da88b78f1c1138a685dae39354d6 (diff)
downloadblackbird-obmc-uboot-3b96b90966615443e31463183d7e575a093ce0b4.tar.gz
blackbird-obmc-uboot-3b96b90966615443e31463183d7e575a093ce0b4.zip
common/lcd_console: fix console/logo regression
The following commit changed the order of the column vs. row parameter to the lcd_init_console() function but missed actually changing it as well the second time it is called from lcd_clear() which resulted in a garbled text console which this patch fixes. commit 604c7d4a5a3cf70949f6e6094bf0d52ee3b4804d common/lcd_console: introduce display/framebuffer rotation Tested on Colibri T20 with my latest assortment of tegra fixes/enhancements patch set. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/lcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/lcd.c b/common/lcd.c
index 5a52fe4287..d29308aeb6 100644
--- a/common/lcd.c
+++ b/common/lcd.c
@@ -234,8 +234,8 @@ void lcd_clear(void)
lcd_logo();
#if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO)
addr = (ulong)lcd_base + BMP_LOGO_HEIGHT * lcd_line_length;
- lcd_init_console((void *)addr, panel_info.vl_row,
- panel_info.vl_col, panel_info.vl_rot);
+ lcd_init_console((void *)addr, panel_info.vl_col,
+ panel_info.vl_row, panel_info.vl_rot);
#endif
lcd_sync();
}
OpenPOWER on IntegriCloud