diff options
author | Evgeny M. Zubok <evgeny.zubok@tochka.ru> | 2010-04-08 03:58:21 -0700 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-03-14 11:44:10 -0400 |
commit | b78897d0a04a833720698901fbac9535570875e4 (patch) | |
tree | 8a554e7300b4edd50eea4f9267218165430c7571 | |
parent | 184fbf7541012090b8716c7eaf00895efd16d0ac (diff) |
xfree86: Change VBE version early-out to 1.2. (#22672)
Reporter has an S3 Trio with DDC and VESA 1.2.
Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
-rw-r--r-- | hw/xfree86/vbe/vbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/vbe/vbe.c b/hw/xfree86/vbe/vbe.c index ef12cb805..d23e0f589 100644 --- a/hw/xfree86/vbe/vbe.c +++ b/hw/xfree86/vbe/vbe.c @@ -325,7 +325,7 @@ vbeDoEDID(vbeInfoPtr pVbe, void *unused) if (!pVbe) return NULL; - if (pVbe->version < 0x200) + if (pVbe->version < 0x102) return NULL; DDC_data = vbeReadEDID(pVbe); |