Skip to content

Commit

Permalink
video: exynos_dp: reduce delay time when configuring video setting
Browse files Browse the repository at this point in the history
This patch reduces delay time when configuring video setting,
which is helpful to reduce wakeup time during resume.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
  • Loading branch information
Jingoo Han authored and Florian Tobias Schandinat committed May 29, 2012
1 parent 24db03a commit ddbcb28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/exynos/exynos_dp_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ static int exynos_dp_config_video(struct exynos_dp_device *dp,
return -ETIMEDOUT;
}

mdelay(100);
udelay(1);
}

/* Set to use the register calculated M/N video */
Expand Down Expand Up @@ -804,7 +804,7 @@ static int exynos_dp_config_video(struct exynos_dp_device *dp,
return -ETIMEDOUT;
}

mdelay(100);
mdelay(1);
}

if (retval != 0)
Expand Down

0 comments on commit ddbcb28

Please sign in to comment.