mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 00:21:17 +00:00
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: Nicholas Mc Guire <hofrat@osadl.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
c6d0baf1fd
commit
0c076bffd2
1 changed files with 1 additions and 2 deletions
|
@ -1033,8 +1033,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
|
||||||
time_left = wait_for_completion_timeout(&ctrl->idle_comp,
|
time_left = wait_for_completion_timeout(&ctrl->idle_comp,
|
||||||
msecs_to_jiffies(500));
|
msecs_to_jiffies(500));
|
||||||
if (!time_left)
|
if (!time_left)
|
||||||
DBG("%s: idle pattern timedout, %lu\n",
|
DBG("%s: idle pattern timedout\n", __func__);
|
||||||
__func__, time_left);
|
|
||||||
|
|
||||||
edp_state_ctrl(ctrl, 0);
|
edp_state_ctrl(ctrl, 0);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue