summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_wb.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pci/if_wb.c')
-rw-r--r--sys/pci/if_wb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/pci/if_wb.c b/sys/pci/if_wb.c
index 372c205..1b738d7 100644
--- a/sys/pci/if_wb.c
+++ b/sys/pci/if_wb.c
@@ -858,8 +858,7 @@ wb_attach(dev)
pci_enable_busmaster(dev);
rid = WB_RID;
- sc->wb_res = bus_alloc_resource(dev, WB_RES, &rid,
- 0, ~0, 1, RF_ACTIVE);
+ sc->wb_res = bus_alloc_resource_any(dev, WB_RES, &rid, RF_ACTIVE);
if (sc->wb_res == NULL) {
printf("wb%d: couldn't map ports/memory\n", unit);
@@ -872,7 +871,7 @@ wb_attach(dev)
/* Allocate interrupt */
rid = 0;
- sc->wb_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
+ sc->wb_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
RF_SHAREABLE | RF_ACTIVE);
if (sc->wb_irq == NULL) {
OpenPOWER on IntegriCloud