diff options
author | Sergiy Kibrik <sergiy.kibrik@globallogic.com> | 2012-03-15 15:36:07 +0200 |
---|---|---|
committer | Ziyan <jaraidaniel@gmail.com> | 2015-04-18 01:28:40 +0200 |
commit | 2e0a6b12c86f068a5eedb34c70ab15ed63a3eaf3 (patch) | |
tree | f372eca9cc04578cf910d416a90fb5c803eaff84 /drivers/video/omap2 | |
parent | 1bff40bae2a43d281e7598842285c9f3dd6d1488 (diff) | |
download | kernel_samsung_tuna-2e0a6b12c86f068a5eedb34c70ab15ed63a3eaf3.zip kernel_samsung_tuna-2e0a6b12c86f068a5eedb34c70ab15ed63a3eaf3.tar.gz kernel_samsung_tuna-2e0a6b12c86f068a5eedb34c70ab15ed63a3eaf3.tar.bz2 |
OMAPDSS: DSI: fix debug messages
Routine names in debug messages of dsi_vc_gen_read_2() and dsi_vc_dcs_read()
are set to same "dsi_vc_rcs_read". Fix routine names in these messages.
Change-Id: I9cceca5711932ba2c2ea3f2919baf461e30ddd8b
Signed-off-by: Sergiy Kibrik <sergiy.kibrik@globallogic.com>
Diffstat (limited to 'drivers/video/omap2')
-rwxr-xr-x | drivers/video/omap2/dss/dsi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index 61e75d6..50bd25e 100755 --- a/drivers/video/omap2/dss/dsi.c +++ b/drivers/video/omap2/dss/dsi.c @@ -3271,7 +3271,7 @@ int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, int r; if (dsi->debug_read) - DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %x)\n", channel, dcs_cmd); + DSSDBG("%s(ch%d, dcs_cmd %x)\n", __func__, channel, dcs_cmd); r = dsi_vc_send_short(dsidev, channel, DSI_DT_DCS_READ, dcs_cmd, 0); if (r) @@ -3365,8 +3365,8 @@ int dsi_vc_dcs_read(struct omap_dss_device *dssdev, int channel, u8 dcs_cmd, BUG(); err: - DSSERR("dsi_vc_dcs_read(ch %d, cmd 0x%02x) failed\n", - channel, dcs_cmd); + DSSERR("%s(ch %d, cmd 0x%02x) failed\n", + __func__, channel, dcs_cmd); return r; } @@ -3476,7 +3476,7 @@ int dsi_vc_gen_read_2(struct omap_dss_device *dssdev, int channel, u16 cmd, int r; if (dsi->debug_read) - DSSDBG("dsi_vc_dcs_read(ch%d, dcs_cmd %x)\n", channel, cmd); + DSSDBG("%s(ch%d, cmd %x)\n", __func__, channel, cmd); r = dsi_vc_send_short(dsidev, channel, DSI_DT_GENERIC_READ_2, cmd, 0); if (r) @@ -3570,8 +3570,8 @@ int dsi_vc_gen_read_2(struct omap_dss_device *dssdev, int channel, u16 cmd, BUG(); err: - DSSERR("dsi_vc_dcs_read(ch %d, cmd 0x%02x) failed\n", - channel, cmd); + DSSERR("%s(ch %d, cmd 0x%02x) failed\n", + __func__, channel, cmd); return r; } |