diff options
| author | Jingoo Han <jg1.han@samsung.com> | 2012-05-25 03:21:38 -0400 |
|---|---|---|
| committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-05-29 09:16:15 -0400 |
| commit | ddbcb289ca4b5c124673c076a6941cbca016c1d7 (patch) | |
| tree | 78674ee516acfc3a32d5c9ef2370b56e5e0c6327 | |
| parent | 24db03a834089a3600780ea1c7abe08e483e5d29 (diff) | |
video: exynos_dp: reduce delay time when configuring video setting
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>
| -rw-r--r-- | drivers/video/exynos/exynos_dp_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/exynos/exynos_dp_core.c b/drivers/video/exynos/exynos_dp_core.c index b446f7e42f2a..a36b2d28280e 100644 --- a/drivers/video/exynos/exynos_dp_core.c +++ b/drivers/video/exynos/exynos_dp_core.c | |||
| @@ -770,7 +770,7 @@ static int exynos_dp_config_video(struct exynos_dp_device *dp, | |||
| 770 | return -ETIMEDOUT; | 770 | return -ETIMEDOUT; |
| 771 | } | 771 | } |
| 772 | 772 | ||
| 773 | mdelay(100); | 773 | udelay(1); |
| 774 | } | 774 | } |
| 775 | 775 | ||
| 776 | /* Set to use the register calculated M/N video */ | 776 | /* Set to use the register calculated M/N video */ |
| @@ -804,7 +804,7 @@ static int exynos_dp_config_video(struct exynos_dp_device *dp, | |||
| 804 | return -ETIMEDOUT; | 804 | return -ETIMEDOUT; |
| 805 | } | 805 | } |
| 806 | 806 | ||
| 807 | mdelay(100); | 807 | mdelay(1); |
| 808 | } | 808 | } |
| 809 | 809 | ||
| 810 | if (retval != 0) | 810 | if (retval != 0) |
