Allocate system resource IRQs as shareable; this is the typical case.

This commit is contained in:
msmith 2001-09-06 22:34:40 +00:00
parent 054237d0be
commit ec1ab724cb

@ -570,7 +570,7 @@ acpi_sysresource_attach(device_t dev)
rid = i;
res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, 0, ~0, 1, 0);
rid = i;
res = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, 0);
res = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_SHAREABLE);
}
return(0);
}