mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 23:52:40 +00:00
drm/msm: match wait_for_completion_timeout return type
return type of wait_for_completion_timeout is unsigned long not int, this patch assigns the return value of wait_for_completion_timeout to an appropriately typed and named variable. Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
65c5e5426d
commit
a51d01f067
1 changed files with 5 additions and 5 deletions
|
@ -1018,7 +1018,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
|
||||||
{
|
{
|
||||||
struct edp_ctrl *ctrl = container_of(
|
struct edp_ctrl *ctrl = container_of(
|
||||||
work, struct edp_ctrl, off_work);
|
work, struct edp_ctrl, off_work);
|
||||||
int ret;
|
unsigned long time_left;
|
||||||
|
|
||||||
mutex_lock(&ctrl->dev_mutex);
|
mutex_lock(&ctrl->dev_mutex);
|
||||||
|
|
||||||
|
@ -1030,11 +1030,11 @@ static void edp_ctrl_off_worker(struct work_struct *work)
|
||||||
reinit_completion(&ctrl->idle_comp);
|
reinit_completion(&ctrl->idle_comp);
|
||||||
edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE);
|
edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE);
|
||||||
|
|
||||||
ret = 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 (ret <= 0)
|
if (time_left <= 0)
|
||||||
DBG("%s: idle pattern timedout, %d\n",
|
DBG("%s: idle pattern timedout, %lu\n",
|
||||||
__func__, ret);
|
__func__, time_left);
|
||||||
|
|
||||||
edp_state_ctrl(ctrl, 0);
|
edp_state_ctrl(ctrl, 0);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue