[Intel-gfx] [PATCH 03/15] drm/i915/tv: Fix interlaced ysize calculation
Ville Syrjala
ville.syrjala at linux.intel.com
Mon Nov 12 16:59:47 UTC 2018
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
Fix the calculation of the vertical active period for interlaced
TV modes.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
drivers/gpu/drm/i915/intel_tv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/intel_tv.c b/drivers/gpu/drm/i915/intel_tv.c
index 860f306a23ba..219a16d6dcc2 100644
--- a/drivers/gpu/drm/i915/intel_tv.c
+++ b/drivers/gpu/drm/i915/intel_tv.c
@@ -1087,7 +1087,7 @@ static void intel_tv_pre_enable(struct intel_encoder *encoder,
if (tv_mode->progressive)
ysize = tv_mode->nbr_end + 1;
else
- ysize = 2*tv_mode->nbr_end + 1;
+ ysize = 2 * (tv_mode->nbr_end + 1);
xpos += conn_state->tv.margins.left;
ypos += conn_state->tv.margins.top;
--
2.18.1
More information about the Intel-gfx
mailing list