While PCI interrupts are shareable, this should not have been committed just

yet.
This commit is contained in:
Warner Losh 2002-08-02 22:26:03 +00:00
parent d97fcfce27
commit b8182b24d7

View File

@ -30,7 +30,6 @@
*/
#include "opt_bus.h"
#include "opt_pci.h"
#include <sys/param.h>
#include <sys/systm.h>
@ -1195,12 +1194,6 @@ pci_alloc_resource(device_t dev, device_t child, int type, int *rid,
struct resource_list *rl = &dinfo->resources;
pcicfgregs *cfg = &dinfo->cfg;
/*
* You can share PCI interrupts.
*/
if (type == SYS_RES_IRQ)
flags |= RF_SHAREABLE;
/*
* Perform lazy resource allocation
*