[U-Boot] [PATCH 09/10] api/api_display: use the getters for console size info
Che-liang Chiou
clchiou at chromium.org
Tue Jan 15 19:14:13 CET 2013
Acked-by: Che-Liang Chiou <clchiou at chromium.org>
On Sat, Jan 12, 2013 at 2:07 PM, Jeroen Hofstee <jeroen at myspectrum.nl> wrote:
> cc: 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