summaryrefslogtreecommitdiff
path: root/drivers/video
diff options
context:
space:
mode:
authorVincent Stehle <v-stehle@ti.com>2012-06-26 08:40:58 +0800
committerAndy Green <andy.green@linaro.org>2012-06-26 08:40:58 +0800
commit9391b5fafd055f0b1c26a960999a1767b71844be (patch)
tree14ffdf1a1ca5297cb5fa86757bb0124f00546251 /drivers/video
parent3f00f4f9b6c411357b2eafbbe7b355c7cd4606bd (diff)
OMAPDSS DISPC Do not div y res by 2
MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Vincent Stehlé <v-stehle@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/omap2/dss/dispc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c
index d4d3b8be9c73..95ee110d0c4a 100644
--- a/drivers/video/omap2/dss/dispc.c
+++ b/drivers/video/omap2/dss/dispc.c
@@ -2723,8 +2723,9 @@ void dispc_mgr_set_timings(enum omap_channel channel,
source = dss_get_hdmi_venc_clk_source();
- if (source == DSS_VENC_TV_CLK)
- t.y_res /= 2;
+// Hack!
+// if (source == DSS_VENC_TV_CLK)
+// t.y_res /= 2;
}
dispc_mgr_set_size(channel, t.x_res, t.y_res);