1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

bus_alloc_resource_any is actually defined in the

RELENG_4 branch, so there's no need to have a compilation
difference here any more.
This commit is contained in:
Matt Jacob 2006-07-25 01:01:09 +00:00
parent 1dad8bb0ba
commit 163c429fbb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160650

View File

@ -503,13 +503,8 @@ mpt_pci_attach(device_t dev)
/* Get a handle to the interrupt */
iqd = 0;
#if __FreeBSD_version < 500000
mpt->pci_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &iqd, 0, ~0, 1,
RF_ACTIVE | RF_SHAREABLE);
#else
mpt->pci_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &iqd,
RF_ACTIVE | RF_SHAREABLE);
#endif
if (mpt->pci_irq == NULL) {
device_printf(dev, "could not allocate interrupt\n");
goto bad;