From 7bf0d4d63ea6de60e7dbe46205fb588e7f964d67 Mon Sep 17 00:00:00 2001 From: bde Date: Mon, 28 Feb 2000 08:12:24 +0000 Subject: [PATCH] Fixed configuration of fast interrupts for the pci cy driver. They were an early newbus casualty. The fix in rev.1.28 didn't work because the most important part of it used a wrong macro name. Approved by: jkh --- sys/pci/pci_compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pci/pci_compat.c b/sys/pci/pci_compat.c index 77c3fa22a9e1..efd3edfa6f12 100644 --- a/sys/pci/pci_compat.c +++ b/sys/pci/pci_compat.c @@ -129,7 +129,7 @@ pci_map_int_right(pcici_t cfg, pci_inthand_t *handler, void *arg, #ifdef INTR_FAST if (intflags & INTR_FAST) - flags |= INTR_FAST; + flags |= INTR_TYPE_FAST; if (intflags & INTR_EXCL) resflags &= ~RF_SHAREABLE; #endif