From 74952f399b39ca4c3f999cf8d2bc43923ba0c182 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Thu, 26 Nov 2015 13:59:22 +0100 Subject: [PATCH 1/1] karo: tx6ul: fix max. dimensions of framebuffer --- board/karo/tx6/tx6ul.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.39.2