diff options
author | Archit Taneja <archit@ti.com> | 2012-08-08 14:29:48 +0530 |
---|---|---|
committer | Archit Taneja <archit@ti.com> | 2012-08-13 15:44:39 +0530 |
commit | bdcae3cc39e8232eca81504a2ff9c60f4cc8f22d (patch) | |
tree | e48c207700a34d269cfab349e7ff30ab51aaf2b5 /drivers/video/omap2/displays/panel-generic-dpi.c | |
parent | c499144c3b69a657b5dfd707b35871e066fabd3a (diff) | |
download | lwn-bdcae3cc39e8232eca81504a2ff9c60f4cc8f22d.tar.gz lwn-bdcae3cc39e8232eca81504a2ff9c60f4cc8f22d.zip |
OMAPDSS: DPI displays: Take care of panel timings in the driver itself
The timings maintained in omap_dss_device(dssdev->panel.timings) should be
maintained by the panel driver itself. It's the panel drivers responsibility
to update it if a new set of timings is to be configured. The DPI interface
driver shouldn't be responsible of updating the panel timings, it's responsible
of maintianing it's own copy of timings.
Signed-off-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'drivers/video/omap2/displays/panel-generic-dpi.c')
-rw-r--r-- | drivers/video/omap2/displays/panel-generic-dpi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/omap2/displays/panel-generic-dpi.c b/drivers/video/omap2/displays/panel-generic-dpi.c index 8d4e102bb0e6..a07e18c8f71b 100644 --- a/drivers/video/omap2/displays/panel-generic-dpi.c +++ b/drivers/video/omap2/displays/panel-generic-dpi.c @@ -730,6 +730,8 @@ static void generic_dpi_panel_set_timings(struct omap_dss_device *dssdev, omapdss_dpi_set_timings(dssdev, timings); + dssdev->panel.timings = *timings; + mutex_unlock(&drv_data->lock); } |