summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 a02be081d67..d128c80f8d8 100644
--- a/sys/dev/isa/it.c
+++ b/sys/dev/isa/it.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: it.c,v 1.6 2004/01/28 20:02:27 grange Exp $ */
+/* $OpenBSD: it.c,v 1.7 2004/02/02 20:14:26 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 == 0x11 || cr == 0x18 || cr == 0x19)
+ if (cr == 0x11 || cr == 0x13 || cr == 0x18 || cr == 0x19)
rv = 1;
DPRINTF(("it: rv = %d, cr = %x\n", rv, cr));