diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-08-22 09:00:47 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-09-24 09:50:10 -0400 |
commit | 2ac80fbea1018404560294797da86d5e72a807f4 (patch) | |
tree | 90970e6cb152dd5a3373ba13c9aa34552ba60ecd /drivers/video | |
parent | 6d44610f8321a9aa3bc408026f888872b1390712 (diff) |
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 <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/dss/dsi.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) | |||
2155 | return 1194 * 3; /* 1194x24 bits */ | 2155 | return 1194 * 3; /* 1194x24 bits */ |
2156 | case 6: | 2156 | case 6: |
2157 | return 1365 * 3; /* 1365x24 bits */ | 2157 | return 1365 * 3; /* 1365x24 bits */ |
2158 | case 7: | ||
2159 | return 1920 * 3; /* 1920x24 bits */ | ||
2158 | default: | 2160 | default: |
2159 | BUG(); | 2161 | BUG(); |
2160 | return 0; | 2162 | return 0; |