summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2004-02-02 20:14:27 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2004-02-02 20:14:27 +0000
commit3dac03178d6ec8da82bbf190c434a6a2cbfeae41 (patch)
tree6954d7a595e71967a0540f4324b59fa72b310a73
parent418cc6471219814febd45ea48f4a83277e56f08f (diff)
Yet another signature; reported by danh@
-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));