summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2008-03-08 23:36:25 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2008-03-08 23:36:25 +0000
commit099b2ba8328a53786470c287c8a6f3c84fa9042e (patch)
tree3116817741feda79c7344cf4be6e142bfc7b93e8 /sys
parent5f08232e7adab81c8cf3fa2dccccc4000fd89063 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/boot/i386/libi386/biosdisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/libi386/biosdisk.c b/sys/boot/i386/libi386/biosdisk.c
index bd4d9d7fd0fe..c673e10fef77 100644
--- a/sys/boot/i386/libi386/biosdisk.c
+++ b/sys/boot/i386/libi386/biosdisk.c
@@ -254,7 +254,7 @@ bd_int13probe(struct bdinfo *bd)
((v86.ebx & 0xffff) == 0xaa55) && /* signature */
(v86.ecx & 0x1)) { /* packets mode ok */
bd->bd_flags |= BD_MODEEDD1;
- if((v86.eax & 0xff00) > 0x300)
+ if((v86.eax & 0xff00) >= 0x3000)
bd->bd_flags |= BD_MODEEDD3;
}
return(1);