summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-08-07 11:38:40 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-08-07 11:38:40 +0000
commita78192d454ff36dab0f23af0bcd3c1d4a3349b05 (patch)
treec1ef7c2da37f3df928552b782295101ee314f7a5 /sys/arch/i386/stand
parenta057395ef4579a65ab569357c58480f40e61e11f (diff)
probe should be returning non-zero when succesful
it was the other way around.
Diffstat (limited to 'sys/arch/i386/stand')
-rw-r--r--sys/arch/i386/stand/libsa/bioskbd.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/bioskbd.S b/sys/arch/i386/stand/libsa/bioskbd.S
index f1b993b297f..92373208c2c 100644
--- a/sys/arch/i386/stand/libsa/bioskbd.S
+++ b/sys/arch/i386/stand/libsa/bioskbd.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: bioskbd.S,v 1.8 1997/07/18 00:29:09 mickey Exp $ */
+/* $OpenBSD: bioskbd.S,v 1.9 1997/08/07 11:38:39 niklas Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
@@ -52,7 +52,7 @@ ENTRY(kbd_probe)
xorl %edx, %edx
andb $(NVRAM_EQUIPMENT_KBD|NVRAM_EQUIPMENT_DISPLAY), %al
cmpb $(NVRAM_EQUIPMENT_KBD|NVRAM_EQUIPMENT_DISPLAY), %al
- je 1f
+ jne 1f
incl %edx
1: movl %edx, %eax
ret