aboutsummaryrefslogtreecommitdiffstats
path: root/include/video/omapdss.h
diff options
context:
space:
mode:
authorArchit Taneja <archit@ti.com>2012-08-13 05:42:10 -0400
committerArchit Taneja <archit@ti.com>2012-08-15 06:23:09 -0400
commit6ff9dd5a6fe624726f7004ddf995bb2b3409e1d5 (patch)
tree24ed2e8673669b45f158f3e29d4f738bef71bb41 /include/video/omapdss.h
parent43eab86167a0893e0e1102d4a5a1d95dfe442f8d (diff)
OMAPDSS: RFBI: Add function to set panel size
RFBI drivers requires configuration of the update area. Since we don't support partial updates, the size to be configures is the panel size itself. Add a timings field in RFBI's driver data. Apart from x_res and y_res, all the other fields are configured to an initial value when RFBI is enabled. A panel driver is expected to call omapdss_rfbi_set_size() configure the size of the panel. Signed-off-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'include/video/omapdss.h')
-rw-r--r--include/video/omapdss.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h
index b6b03cea8600..ea7d59835905 100644
--- a/include/video/omapdss.h
+++ b/include/video/omapdss.h
@@ -753,5 +753,6 @@ int omap_rfbi_update(struct omap_dss_device *dssdev, void (*callback)(void *),
753 void *data); 753 void *data);
754int omap_rfbi_configure(struct omap_dss_device *dssdev, int pixel_size, 754int omap_rfbi_configure(struct omap_dss_device *dssdev, int pixel_size,
755 int data_lines); 755 int data_lines);
756void omapdss_rfbi_set_size(struct omap_dss_device *dssdev, u16 w, u16 h);
756 757
757#endif 758#endif