OMAP: DSS2: DSI: Remove functions dsi_vc_dcs_read_1() and dsi_vc_dcs_read_2()
authorArchit Taneja <archit@ti.com>
Mon, 22 Aug 2011 09:14:27 +0000 (14:44 +0530)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 30 Sep 2011 13:16:27 +0000 (16:16 +0300)
Remove functions dsi_vc_dcs_read_1() and dsi_vc_dcs_read_2(), these are used
when the panel is expected to return 1 and 2 bytes respecitvely. This was manily
used for debugging purposes. These functions should be implemented in the panel
driver if needed.

Signed-off-by: Archit Taneja <archit@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/dsi.c
include/video/omapdss.h

index bb5588932b027515eb21cbdfb8b2417603ddd17f..82516471b64fbd332ac476d0f5ee5cf984d34174 100644 (file)
@@ -3307,44 +3307,6 @@ err:
 }
 EXPORT_SYMBOL(dsi_vc_dcs_read);
 
-int dsi_vc_dcs_read_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
-               u8 *data)
-{
-       int r;
-
-       r = dsi_vc_dcs_read(dssdev, channel, dcs_cmd, data, 1);
-
-       if (r < 0)
-               return r;
-
-       if (r != 1)
-               return -EIO;
-
-       return 0;
-}
-EXPORT_SYMBOL(dsi_vc_dcs_read_1);
-
-int dsi_vc_dcs_read_2(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
-               u8 *data1, u8 *data2)
-{
-       u8 buf[2];
-       int r;
-
-       r = dsi_vc_dcs_read(dssdev, channel, dcs_cmd, buf, 2);
-
-       if (r < 0)
-               return r;
-
-       if (r != 2)
-               return -EIO;
-
-       *data1 = buf[0];
-       *data2 = buf[1];
-
-       return 0;
-}
-EXPORT_SYMBOL(dsi_vc_dcs_read_2);
-
 int dsi_vc_set_max_rx_packet_size(struct omap_dss_device *dssdev, int channel,
                u16 len)
 {
index 49ffdd201c2d32291bdf3858a73f942d16e9e8b9..a8a43de3dd817240ac0e530856fe56989c8e9561 100644 (file)
@@ -241,10 +241,6 @@ int dsi_vc_generic_write_nosync(struct omap_dss_device *dssdev, int channel,
                u8 *data, int len);
 int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
                u8 *buf, int buflen);
-int dsi_vc_dcs_read_1(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
-               u8 *data);
-int dsi_vc_dcs_read_2(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd,
-               u8 *data1, u8 *data2);
 int dsi_vc_set_max_rx_packet_size(struct omap_dss_device *dssdev, int channel,
                u16 len);
 int dsi_vc_send_null(struct omap_dss_device *dssdev, int channel);