[U-Boot] [PATCH v2 09/10] api/api_display: use the getters for console size info

Jeroen Hofstee jeroen at myspectrum.nl
Tue Jan 22 21:44:14 CET 2013


cc: Che-Liang Chiou <clchiou at chromium.org>
Acked-by: Che-Liang Chiou <clchiou at chromium.org>
Signed-off-by: Jeroen Hofstee <jeroen at myspectrum.nl>
---
 api/api_display.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/api/api_display.c b/api/api_display.c
index 6439170..c167db7 100644
--- a/api/api_display.c
+++ b/api/api_display.c
@@ -45,8 +45,8 @@ int display_get_info(int type, struct display_info *di)
 	case DISPLAY_TYPE_LCD:
 		di->pixel_width  = panel_info.vl_col;
 		di->pixel_height = panel_info.vl_row;
-		di->screen_rows = CONSOLE_ROWS;
-		di->screen_cols = CONSOLE_COLS;
+		di->screen_rows = lcd_get_screen_rows();
+		di->screen_cols = lcd_get_screen_columns();
 		break;
 #endif
 	}
-- 
1.7.9.5



More information about the U-Boot mailing list