summaryrefslogtreecommitdiffstats
path: root/sys/dev/mpt
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2006-07-25 01:01:09 +0000
committermjacob <mjacob@FreeBSD.org>2006-07-25 01:01:09 +0000
commite8bbdef16650fd38e435b99873ed85dd980d1847 (patch)
treed8486490c0b9c7d12fd7fd74691871d56ab64781 /sys/dev/mpt
parentdd7156e6854b14431bf8613e75c524688d25e058 (diff)
downloadFreeBSD-src-e8bbdef16650fd38e435b99873ed85dd980d1847.zip
FreeBSD-src-e8bbdef16650fd38e435b99873ed85dd980d1847.tar.gz
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.
Diffstat (limited to 'sys/dev/mpt')
-rw-r--r--sys/dev/mpt/mpt_pci.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/dev/mpt/mpt_pci.c b/sys/dev/mpt/mpt_pci.c
index 47bbf7b..cac27f6 100644
--- a/sys/dev/mpt/mpt_pci.c
+++ b/sys/dev/mpt/mpt_pci.c
@@ -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;
OpenPOWER on IntegriCloud