diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-03-28 14:07:44 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-03-28 14:07:44 +0000 |
commit | 4f46f6f3916ddaa62b6b0f76011a4c4f16118f5f (patch) | |
tree | 03e29993fcd175b14def7d2e626c466ce696ad87 /sys/dev/isa/wss_isa.c | |
parent | 75367cc195aea852551fa9e0b4447f0bf9fcd536 (diff) |
Allow wss to configure @irq 5, which is the default irq for quite a few
laptops.
Diffstat (limited to 'sys/dev/isa/wss_isa.c')
-rw-r--r-- | sys/dev/isa/wss_isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/wss_isa.c b/sys/dev/isa/wss_isa.c index c3372a7e33d..41cf817f120 100644 --- a/sys/dev/isa/wss_isa.c +++ b/sys/dev/isa/wss_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wss_isa.c,v 1.2 1999/01/24 15:58:54 mickey Exp $ */ +/* $OpenBSD: wss_isa.c,v 1.3 2000/03/28 14:07:42 espie Exp $ */ /* $NetBSD: wss_isa.c,v 1.1 1998/01/19 22:18:24 augustss Exp $ */ /* @@ -128,7 +128,7 @@ wssfind(parent, sc, ia) struct isa_attach_args *ia; { static u_char interrupt_bits[12] = { - -1, -1, -1, -1, -1, -1, -1, 0x08, -1, 0x10, 0x18, 0x20 + -1, -1, -1, -1, -1, 0x0, -1, 0x08, -1, 0x10, 0x18, 0x20 }; static u_char dma_bits[4] = {1, 2, 0, 3}; |