summaryrefslogtreecommitdiff
path: root/sys/dev/isa/it.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/isa/it.c')
-rw-r--r--sys/dev/isa/it.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/it.c b/sys/dev/isa/it.c
index 21093327eac..a02be081d67 100644
--- a/sys/dev/isa/it.c
+++ b/sys/dev/isa/it.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: it.c,v 1.5 2004/01/12 14:10:53 grange Exp $ */
+/* $OpenBSD: it.c,v 1.6 2004/01/28 20:02:27 grange Exp $ */
/*
* Copyright (c) 2003 Julien Bordet <zejames@greyhats.org>
@@ -94,7 +94,7 @@ it_match(struct device *parent, void *match, void *aux)
cr = bus_space_read_1(iot, ioh, ITC_DATA);
/* The monitoring may have been enabled by BIOS */
- if (cr == 0x18 || cr == 0x19)
+ if (cr == 0x11 || cr == 0x18 || cr == 0x19)
rv = 1;
DPRINTF(("it: rv = %d, cr = %x\n", rv, cr));