drm/edid: Fix the HDTV hack sync adjustment

We're adjusting horizontal timings only here, moving vsync was just a
slavish translation of a typo in the X server.

Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by Adam Jackson and committed by Dave Airlie a4967de6 12e27be8

Changed files
+2 -2
drivers
gpu
+2 -2
drivers/gpu/drm/drm_edid.c
··· 864 864 mode = drm_cvt_mode(dev, 1366, 768, vrefresh_rate, 0, 0, 865 865 false); 866 866 mode->hdisplay = 1366; 867 - mode->vsync_start = mode->vsync_start - 1; 868 - mode->vsync_end = mode->vsync_end - 1; 867 + mode->hsync_start = mode->hsync_start - 1; 868 + mode->hsync_end = mode->hsync_end - 1; 869 869 return mode; 870 870 } 871 871