summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2000-02-28 08:12:24 +0000
committerbde <bde@FreeBSD.org>2000-02-28 08:12:24 +0000
commitdbaa471517c5ffad0cb5dca02dae72730c2b1193 (patch)
tree2c4cc0b48732ac1ba17c6af57b6ca4e886c0ef04 /sys/pci
parenta037ac116f9bc802f788b99358fcd2b2632daac7 (diff)
downloadFreeBSD-src-dbaa471517c5ffad0cb5dca02dae72730c2b1193.zip
FreeBSD-src-dbaa471517c5ffad0cb5dca02dae72730c2b1193.tar.gz
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
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/pci_compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pci/pci_compat.c b/sys/pci/pci_compat.c
index 77c3fa2..efd3edf 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
OpenPOWER on IntegriCloud