Commit 260cf8a2cbe022131a4850ea6175ed716dc2663c

Authored by Pantelis Koukousoulas
Committed by Dave Airlie
1 parent 16b71fdf97

drm: fix EDID parser problem with positive/negative hsync/vsync

Comparing the layouts of struct detail_pixel_timing with
x.org's struct detailed_timings and how those are handled,
it appears that the hsync_positive and vsync_positive
fields are backwards.

This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=20019
for me. It was tested on 2 monitors, LG FLATRON L225WS 22" and
a YAKUMO 17" for which more details are unknown.

Signed-off-by: Pantelis Koukousoulas <pktoss@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/drm/drm_edid.h
... ... @@ -69,8 +69,8 @@
69 69 u8 hborder;
70 70 u8 vborder;
71 71 u8 unknown0:1;
72   - u8 vsync_positive:1;
73 72 u8 hsync_positive:1;
  73 + u8 vsync_positive:1;
74 74 u8 separate_sync:2;
75 75 u8 stereo:1;
76 76 u8 unknown6:1;