diff options
author | Archit Taneja <archit@ti.com> | 2012-04-26 20:10:46 +0530 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-05-09 13:44:06 +0300 |
commit | 4172116385ede7abcfbbcc6eb6b7133385695001 (patch) | |
tree | 5b1102aea3d951a057d4a8420761b78dd0fd8758 /drivers/video/omap2/dss/venc.c | |
parent | 45324a2648bcfa96adeae71ae992da931eed79f6 (diff) | |
download | op-kernel-dev-4172116385ede7abcfbbcc6eb6b7133385695001.zip op-kernel-dev-4172116385ede7abcfbbcc6eb6b7133385695001.tar.gz |
OMAPDSS: Apply manager timings instead of direct DISPC writes
Replace the function dispc_mgr_set_timings() with dss_mgr_set_timings() in the
interface drivers. The latter function ensures that the timing related DISPC
registers are configured according to the shadow register programming model.
Remove the call to dispc_mgr_go() in dpi_set_timings() as the manager's go bit
is set by dss_mgr_set_timings().
Signed-off-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/venc.c')
-rw-r--r-- | drivers/video/omap2/dss/venc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/venc.c b/drivers/video/omap2/dss/venc.c index 30bbb63..e237464 100644 --- a/drivers/video/omap2/dss/venc.c +++ b/drivers/video/omap2/dss/venc.c @@ -444,7 +444,7 @@ static int venc_power_on(struct omap_dss_device *dssdev) timings = dssdev->panel.timings; timings.y_res /= 2; - dispc_mgr_set_timings(dssdev->manager->id, &timings); + dss_mgr_set_timings(dssdev->manager, &timings); r = regulator_enable(venc.vdda_dac_reg); if (r) |