Commit 0c076bff authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Rob Clark

drm/msm: drop redundant debug output

wait_for_completion_timeout returns 0 in case of timeout and never
return < 0 so there is no additional information in printing the
value of time_left here as it will always be 0, thus it can be dropped.
Signed-off-by: default avatarNicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
parent c6d0baf1
......@@ -1033,8 +1033,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
time_left = wait_for_completion_timeout(&ctrl->idle_comp,
msecs_to_jiffies(500));
if (!time_left)
DBG("%s: idle pattern timedout, %lu\n",
__func__, time_left);
DBG("%s: idle pattern timedout\n", __func__);
edp_state_ctrl(ctrl, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment