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
This commit is contained in:
Bruce Evans 2000-02-28 08:12:24 +00:00
parent ce7a637f11
commit 71c458de9d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57555

View File

@ -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