summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa/it.c
diff options
context:
space:
mode:
authorgrange <grange@openbsd.org>2004-02-02 20:14:26 +0000
committergrange <grange@openbsd.org>2004-02-02 20:14:26 +0000
commit304ced50894dc59aacaa7c1a2a1dc03beb081cdd (patch)
tree7ad55e06410a0f5a0d3030fe63e5bf295799a7a8 /sys/dev/isa/it.c
parentmake the stack compile if NPF=0. ok deraadt@ markus@ (diff)
downloadwireguard-openbsd-304ced50894dc59aacaa7c1a2a1dc03beb081cdd.tar.xz
wireguard-openbsd-304ced50894dc59aacaa7c1a2a1dc03beb081cdd.zip
Yet another signature; reported by danh@
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 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));