diff options
author | Adam Jackson <ajax@redhat.com> | 2009-05-22 12:01:55 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-05-22 13:27:16 -0400 |
commit | 99e22b86c5f1a3653f3caaf01368a777d2b208d0 (patch) | |
tree | 109d5603490cfdff34a8fb303fa2f05d14f82cbd /hw/xfree86/ddc | |
parent | 525aa17f804d37d1cfcbbf6b8e6cddb45e999b20 (diff) |
EDID: Add modes from Established Timings III descriptor to mode pool
EDID 1.4, section 3.10.3.9
Diffstat (limited to 'hw/xfree86/ddc')
-rw-r--r-- | hw/xfree86/ddc/edid.h | 2 | ||||
-rw-r--r-- | hw/xfree86/ddc/interpret_edid.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/hw/xfree86/ddc/edid.h b/hw/xfree86/ddc/edid.h index b55600329..42ee9d15e 100644 --- a/hw/xfree86/ddc/edid.h +++ b/hw/xfree86/ddc/edid.h @@ -533,7 +533,7 @@ struct detailed_monitor_section { struct whitePoints wp[2]; /* 32 */ /* color management data */ struct cvt_timings cvt[4]; /* 64 */ - /* established timings III */ + Uchar est_iii[6]; /* 6 */ } section; /* max: 80 */ }; diff --git a/hw/xfree86/ddc/interpret_edid.c b/hw/xfree86/ddc/interpret_edid.c index bdcc92e64..12a52545e 100644 --- a/hw/xfree86/ddc/interpret_edid.c +++ b/hw/xfree86/ddc/interpret_edid.c @@ -330,6 +330,7 @@ get_dt_md_section(Uchar *c, struct edid_version *ver, break; case ADD_EST_TIMINGS: det_mon[i].type = DS_EST_III; + memcpy(det_mon[i].section.est_iii, c + 6, 6); break; case ADD_DUMMY: det_mon[i].type = DS_DUMMY; |