diff options
author | Nicholas Mc Guire <hofrat@osadl.org> | 2015-04-11 09:10:36 -0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2015-06-11 13:11:03 -0400 |
commit | a51d01f067b34b138deae6ff86276e807c606876 (patch) | |
tree | f51ea7170e540371bee0266626242483972e91a1 | |
parent | 65c5e5426dfc474b2f0462cfc100c7608ab8a627 (diff) |
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>
-rw-r--r-- | drivers/gpu/drm/msm/edp/edp_ctrl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c index 29e52d7c61c0..17ae0cc3db70 100644 --- a/drivers/gpu/drm/msm/edp/edp_ctrl.c +++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c | |||
@@ -1018,7 +1018,7 @@ static void edp_ctrl_off_worker(struct work_struct *work) | |||
1018 | { | 1018 | { |
1019 | struct edp_ctrl *ctrl = container_of( | 1019 | struct edp_ctrl *ctrl = container_of( |
1020 | work, struct edp_ctrl, off_work); | 1020 | work, struct edp_ctrl, off_work); |
1021 | int ret; | 1021 | unsigned long time_left; |
1022 | 1022 | ||
1023 | mutex_lock(&ctrl->dev_mutex); | 1023 | mutex_lock(&ctrl->dev_mutex); |
1024 | 1024 | ||
@@ -1030,11 +1030,11 @@ static void edp_ctrl_off_worker(struct work_struct *work) | |||
1030 | reinit_completion(&ctrl->idle_comp); | 1030 | reinit_completion(&ctrl->idle_comp); |
1031 | edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE); | 1031 | edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE); |
1032 | 1032 | ||
1033 | ret = wait_for_completion_timeout(&ctrl->idle_comp, | 1033 | time_left = wait_for_completion_timeout(&ctrl->idle_comp, |
1034 | msecs_to_jiffies(500)); | 1034 | msecs_to_jiffies(500)); |
1035 | if (ret <= 0) | 1035 | if (time_left <= 0) |
1036 | DBG("%s: idle pattern timedout, %d\n", | 1036 | DBG("%s: idle pattern timedout, %lu\n", |
1037 | __func__, ret); | 1037 | __func__, time_left); |
1038 | 1038 | ||
1039 | edp_state_ctrl(ctrl, 0); | 1039 | edp_state_ctrl(ctrl, 0); |
1040 | 1040 | ||