diff mbox

drm/i915: Fix VLV eDP timing

Message ID 1380094612-19610-1-git-send-email-chon.ming.lee@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Chon Ming Lee Sept. 25, 2013, 7:36 a.m. UTC
Fix the typo in previous commit for DP 1.62 divisor.

drm/i915: Move Valleyview DP DPLL divisor calc to intel_dp_set_clock v2

Reported-by: Jesse Barnes <jbarnes@virtuousgeek.org> 
Signed-off-by: Chon Ming Lee <chon.ming.lee@intel.com>
---
 drivers/gpu/drm/i915/intel_dp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Daniel Vetter Sept. 25, 2013, 8 a.m. UTC | #1
On Wed, Sep 25, 2013 at 03:36:52PM +0800, Chon Ming Lee wrote:
> Fix the typo in previous commit for DP 1.62 divisor.
> 
> drm/i915: Move Valleyview DP DPLL divisor calc to intel_dp_set_clock v2
> 
> Reported-by: Jesse Barnes <jbarnes@virtuousgeek.org> 
> Signed-off-by: Chon Ming Lee <chon.ming.lee@intel.com>

Ville just submitted the same patch so I guess this is right ;-)

Merged to dinq, thanks for the patch.
-Daniel
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index 5e1de35..a8ceccf 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -59,7 +59,7 @@  static const struct dp_link_dpll pch_dpll[] = {
 
 static const struct dp_link_dpll vlv_dpll[] = {
 	{ DP_LINK_BW_1_62,
-		{ .p1 = 3, .p2 = 2, .n = 5, .m1 = 5, .m2 = 3 } },
+		{ .p1 = 3, .p2 = 2, .n = 5, .m1 = 5, .m2 = 81 } },
 	{ DP_LINK_BW_2_7,
 		{ .p1 = 2, .p2 = 2, .n = 1, .m1 = 2, .m2 = 27 } }
 };