diff options
author | 2004-01-28 20:02:27 +0000 | |
---|---|---|
committer | 2004-01-28 20:02:27 +0000 | |
commit | e84d98b1df239bf40c6b0b6fb1dcb202d9ada144 (patch) | |
tree | cf447849176dfb9e99422504a5daa8e069b17a0e /sys/dev/isa/it.c | |
parent | fix pfkey_reply() logic: (diff) | |
download | wireguard-openbsd-e84d98b1df239bf40c6b0b6fb1dcb202d9ada144.tar.xz wireguard-openbsd-e84d98b1df239bf40c6b0b6fb1dcb202d9ada144.zip |
Add new probe signature. From Alexey E. Suslikov <cruel@texnika.com.ua>.
Diffstat (limited to 'sys/dev/isa/it.c')
-rw-r--r-- | sys/dev/isa/it.c | 4 |
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)); |