summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny M. Zubok <evgeny.zubok@tochka.ru>2010-03-19 22:12:33 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2010-03-26 14:36:56 -0700
commitc759c4e82569d2d9a305d589a1a6d369ff1b29c3 (patch)
treeefc19e96bc0fea899de9460a6ff7bf6b97273c8c
parent1676e4331fb0217a8e4fb25badf56a7b276d609b (diff)
xfree86: Change VBE version early-out to 1.2. (#22672)bugfixes
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/vbe/vbe.c b/hw/xfree86/vbe/vbe.c
index 26f5911d5..baf897a6c 100644
--- a/hw/xfree86/vbe/vbe.c
+++ b/hw/xfree86/vbe/vbe.c
@@ -313,7 +313,7 @@ vbeDoEDID(vbeInfoPtr pVbe, pointer pDDCModule)
unsigned char *DDC_data = NULL;
if (!pVbe) return NULL;
- if (pVbe->version < 0x200)
+ if (pVbe->version < 0x102)
return NULL;
if (!(pModule = pDDCModule)) {