| From 29731b0fdfece5a575cb5f11cf65c534ead34ec6 Mon Sep 17 00:00:00 2001 |
| From: =?UTF-8?q?Ville=20Syrj=C3=A4l=C3=A4?= <ville.syrjala@linux.intel.com> |
| Date: Tue, 24 Sep 2013 21:26:29 +0300 |
| Subject: drm/i915: Remove unused dot_limit from VLV PLL limits |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| We don't use .dot_limit for anything on VLV, so don't populate it. |
| |
| Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> |
| Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com> |
| Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> |
| (cherry picked from commit 5fdc9c49f676cc9224df0830a26f7f993ada2517) |
| Signed-off-by: Darren Hart <dvhart@linux.intel.com> |
| --- |
| drivers/gpu/drm/i915/intel_display.c | 6 ++---- |
| 1 file changed, 2 insertions(+), 4 deletions(-) |
| |
| diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c |
| index 3a6c876323a4..0a993962fd44 100644 |
| --- a/drivers/gpu/drm/i915/intel_display.c |
| +++ b/drivers/gpu/drm/i915/intel_display.c |
| @@ -316,8 +316,7 @@ static const intel_limit_t intel_limits_vlv_dac = { |
| .m1 = { .min = 2, .max = 3 }, |
| .m2 = { .min = 11, .max = 156 }, |
| .p1 = { .min = 2, .max = 3 }, |
| - .p2 = { .dot_limit = 270000, |
| - .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */ |
| + .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */ |
| }; |
| |
| static const intel_limit_t intel_limits_vlv_hdmi = { |
| @@ -327,8 +326,7 @@ static const intel_limit_t intel_limits_vlv_hdmi = { |
| .m1 = { .min = 2, .max = 3 }, |
| .m2 = { .min = 11, .max = 156 }, |
| .p1 = { .min = 2, .max = 3 }, |
| - .p2 = { .dot_limit = 270000, |
| - .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */ |
| + .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */ |
| }; |
| |
| static void vlv_clock(int refclk, intel_clock_t *clock) |
| -- |
| 1.8.5.rc3 |
| |