summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-02-01 21:04:57 +0000
committerBill Nottingham <notting@redhat.com>2001-02-01 21:04:57 +0000
commitc1d8e3d4e15033e3ffb91036d04799dcc8e672b6 (patch)
tree4c5fcebcc499b51f388f792d27a7a64aedba2dca
parent058c5a581f7651fc0ed44c52bed69f19f726765a (diff)
downloadanaconda-c1d8e3d4e15033e3ffb91036d04799dcc8e672b6.tar.gz
anaconda-c1d8e3d4e15033e3ffb91036d04799dcc8e672b6.tar.xz
anaconda-c1d8e3d4e15033e3ffb91036d04799dcc8e672b6.zip
fix calling of VESA BIOS (#24176)kudzu-r0-97
-rw-r--r--ddcprobe/vbe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ddcprobe/vbe.c b/ddcprobe/vbe.c
index aec3141d2..70a3eb2fa 100644
--- a/ddcprobe/vbe.c
+++ b/ddcprobe/vbe.c
@@ -187,8 +187,8 @@ int vbe_get_edid_supported()
memset(&regs, 0, sizeof(regs));
regs.eax = 0x4f15;
regs.ebx = 0x0000;
- regs.es = 0x3000;
- regs.edi = 0x3000;
+ regs.es = 0x0000;
+ regs.edi = 0x0000;
/* Do it. */
iopl(3);