diff options
author | Archit Taneja <archit@ti.com> | 2012-08-16 18:02:00 +0530 |
---|---|---|
committer | Archit Taneja <archit@ti.com> | 2012-08-16 18:02:00 +0530 |
commit | dca2b1522ccab28d03fb79f6e70e70ea78033d52 (patch) | |
tree | 848d7f7596c06264567167980149ee3571a00e1a /include/video | |
parent | 889b4fd7eed2d7c155dc642e15a714f87ab2842c (diff) | |
download | blackbird-obmc-linux-dca2b1522ccab28d03fb79f6e70e70ea78033d52.tar.gz blackbird-obmc-linux-dca2b1522ccab28d03fb79f6e70e70ea78033d52.zip |
OMAPDSS: DSI: Maintain copy of operation mode in driver data
The DSI driver currently relies on the omap_dss_device struct to know the mode
of operation of the DSI protocol(command or video mode). This makes the DSI
interface driver dependent on the omap_dss_device struct.
Make the DSI driver data maintain it's own operation mode field. The panel
driver is expected to call omapdss_dsi_set_operation_mode() before the interface
is enabled.
Signed-off-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omapdss.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 88ac6e8f6683..ef14ac552023 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -724,6 +724,8 @@ void omapdss_dsi_set_timings(struct omap_dss_device *dssdev, void omapdss_dsi_set_size(struct omap_dss_device *dssdev, u16 w, u16 h); void omapdss_dsi_set_pixel_format(struct omap_dss_device *dssdev, enum omap_dss_dsi_pixel_format fmt); +void omapdss_dsi_set_operation_mode(struct omap_dss_device *dssdev, + enum omap_dss_dsi_mode mode); int omap_dsi_update(struct omap_dss_device *dssdev, int channel, void (*callback)(int, void *), void *data); |