diff options
author | Archit Taneja <archit@ti.com> | 2012-07-06 15:30:52 +0530 |
---|---|---|
committer | Archit Taneja <archit@ti.com> | 2012-08-16 18:00:55 +0530 |
commit | c6b393d4bc8bc076589bf03433728c1fc2a44d4c (patch) | |
tree | bd7f95efe75d2117411e33bd7353921483e5e969 /drivers/video/omap2/displays/panel-tpo-td043mtea1.c | |
parent | 475989b763668f0794d6a8ee34a1ca0e784831e2 (diff) | |
download | linux-rt-c6b393d4bc8bc076589bf03433728c1fc2a44d4c.tar.gz |
OMAPDSS: DPI: Maintain copy of number of data lines in driver data
The DPI driver currently relies on the omap_dss_device struct to configure the
number of data lines as specified by the panel. This makes the DPI interface
driver dependent on the omap_dss_device struct.
Make the DPI driver data maintain it's own data lines field. A panel driver
is expected to call omapdss_dpi_set_data_lines() before enabling the interface.
Signed-off-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'drivers/video/omap2/displays/panel-tpo-td043mtea1.c')
-rw-r--r-- | drivers/video/omap2/displays/panel-tpo-td043mtea1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/omap2/displays/panel-tpo-td043mtea1.c b/drivers/video/omap2/displays/panel-tpo-td043mtea1.c index 3f47f5f594b4..b5e6dbc59f0a 100644 --- a/drivers/video/omap2/displays/panel-tpo-td043mtea1.c +++ b/drivers/video/omap2/displays/panel-tpo-td043mtea1.c @@ -338,6 +338,7 @@ static int tpo_td043_enable_dss(struct omap_dss_device *dssdev) return 0; omapdss_dpi_set_timings(dssdev, &dssdev->panel.timings); + omapdss_dpi_set_data_lines(dssdev, dssdev->phy.dpi.data_lines); r = omapdss_dpi_display_enable(dssdev); if (r) |