From: Lothar Waßmann Date: Thu, 26 Nov 2015 12:59:22 +0000 (+0100) Subject: karo: tx6ul: fix max. dimensions of framebuffer X-Git-Tag: KARO-TX6UL-2015-11-30~10 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=74952f399b39ca4c3f999cf8d2bc43923ba0c182 karo: tx6ul: fix max. dimensions of framebuffer --- diff --git a/board/karo/tx6/tx6ul.c b/board/karo/tx6/tx6ul.c index 54368f4a58..d00f64ac28 100644 --- a/board/karo/tx6/tx6ul.c +++ b/board/karo/tx6/tx6ul.c @@ -721,8 +721,8 @@ static const struct gpio stk5_gpios[] = { static u16 tx6_cmap[256]; vidinfo_t panel_info = { /* set to max. size supported by SoC */ - .vl_col = 1920, - .vl_row = 1080, + .vl_col = 4096, + .vl_row = 1024, .vl_bpix = LCD_COLOR32, /* Bits per pixel, 0: 1bpp, 1: 2bpp, 2: 4bpp, 3: 8bpp ... */ .cmap = tx6_cmap,