diff options
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omapdss.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index aeadbc880e38..49ffdd201c2d 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h | |||
@@ -225,12 +225,20 @@ void dsi_bus_lock(struct omap_dss_device *dssdev); | |||
225 | void dsi_bus_unlock(struct omap_dss_device *dssdev); | 225 | void dsi_bus_unlock(struct omap_dss_device *dssdev); |
226 | int dsi_vc_dcs_write(struct omap_dss_device *dssdev, int channel, u8 *data, | 226 | int dsi_vc_dcs_write(struct omap_dss_device *dssdev, int channel, u8 *data, |
227 | int len); | 227 | int len); |
228 | int dsi_vc_dcs_write_0(struct omap_dss_device *dssdev, int channel, | 228 | int dsi_vc_generic_write(struct omap_dss_device *dssdev, int channel, u8 *data, |
229 | u8 dcs_cmd); | 229 | int len); |
230 | int dsi_vc_dcs_write_0(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd); | ||
231 | int dsi_vc_generic_write_0(struct omap_dss_device *dssdev, int channel); | ||
230 | int dsi_vc_dcs_write_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, | 232 | int dsi_vc_dcs_write_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, |
231 | u8 param); | 233 | u8 param); |
234 | int dsi_vc_generic_write_1(struct omap_dss_device *dssdev, int channel, | ||
235 | u8 param); | ||
236 | int dsi_vc_generic_write_2(struct omap_dss_device *dssdev, int channel, | ||
237 | u8 param1, u8 param2); | ||
232 | int dsi_vc_dcs_write_nosync(struct omap_dss_device *dssdev, int channel, | 238 | int dsi_vc_dcs_write_nosync(struct omap_dss_device *dssdev, int channel, |
233 | u8 *data, int len); | 239 | u8 *data, int len); |
240 | int dsi_vc_generic_write_nosync(struct omap_dss_device *dssdev, int channel, | ||
241 | u8 *data, int len); | ||
234 | int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, | 242 | int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, |
235 | u8 *buf, int buflen); | 243 | u8 *buf, int buflen); |
236 | int dsi_vc_dcs_read_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, | 244 | int dsi_vc_dcs_read_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, |