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

This commit is contained in:
Mike Smith 2001-09-06 22:34:40 +00:00
parent df53e91c18
commit cb97ee57c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83164

View file

@ -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);
}