From: Tomi Valkeinen Date: Wed, 22 Aug 2012 13:00:47 +0000 (+0300) Subject: OMAPDSS: DSI: Add new linebuffer size for OMAP5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2ac80fbea1018404560294797da86d5e72a807f4;p=linux-beck.git OMAPDSS: DSI: Add new linebuffer size for OMAP5 OMAP5's DSI has a larger line buffer than earlier OMAPs. This patch adds support for this to the DSI driver. Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index a16c8b229ea7..0dc24f2689c7 100644 --- a/drivers/video/omap2/dss/dsi.c +++ b/drivers/video/omap2/dss/dsi.c @@ -2155,6 +2155,8 @@ static unsigned dsi_get_line_buf_size(struct platform_device *dsidev) return 1194 * 3; /* 1194x24 bits */ case 6: return 1365 * 3; /* 1365x24 bits */ + case 7: + return 1920 * 3; /* 1920x24 bits */ default: BUG(); return 0;