summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/msm
diff options
context:
space:
mode:
authorNicholas Mc Guire <hofrat@osadl.org>2015-04-04 05:39:09 +0300
committerRob Clark <robdclark@gmail.com>2015-06-11 20:11:02 +0300
commita7c07690f25c69aa6a68565df904f1b77da725da (patch)
treecf01250e4b49f8f8c1a990ee718f9397af2d67ef /drivers/gpu/drm/msm
parent84c3b87b8b669e2d42209ba9fc9ddeffb90b3f17 (diff)
downloadlinux-a7c07690f25c69aa6a68565df904f1b77da725da.tar.xz
drm/msm: drop redundant output in debug message
wait_for_completion_timeout returns 0 in case of timeout so printing the return value here will always yield 0 and is therefor redundant - dropped. Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm')
-rw-r--r--drivers/gpu/drm/msm/edp/edp_aux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/edp/edp_aux.c b/drivers/gpu/drm/msm/edp/edp_aux.c
index d950839edf91..c760ea2206d0 100644
--- a/drivers/gpu/drm/msm/edp/edp_aux.c
+++ b/drivers/gpu/drm/msm/edp/edp_aux.c
@@ -157,7 +157,7 @@ ssize_t edp_aux_transfer(struct drm_dp_aux *drm_aux, struct drm_dp_aux_msg *msg)
*/
edp_write(aux->base + REG_EDP_AUX_TRANS_CTRL, 0);
msm_edp_aux_ctrl(aux, 1);
- pr_err("%s: aux timeout, %lu\n", __func__, time_left);
+ pr_err("%s: aux timeout,\n", __func__);
ret = -ETIMEDOUT;
goto unlock_exit;
}