summaryrefslogtreecommitdiffstats
path: root/sys/dev/ida/ida_pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ida/ida_pci.c')
-rw-r--r--sys/dev/ida/ida_pci.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ida/ida_pci.c b/sys/dev/ida/ida_pci.c
index b394b04..d1cdc4e 100644
--- a/sys/dev/ida/ida_pci.c
+++ b/sys/dev/ida/ida_pci.c
@@ -256,8 +256,8 @@ ida_pci_attach(device_t dev)
if (id == IDA_DEVICEID_DEC_SMART)
ida->regs_res_id = PCIR_BAR(0);
- ida->regs = bus_alloc_resource(dev, ida->regs_res_type,
- &ida->regs_res_id, 0, ~0, 1, RF_ACTIVE);
+ ida->regs = bus_alloc_resource_any(dev, ida->regs_res_type,
+ &ida->regs_res_id, RF_ACTIVE);
if (ida->regs == NULL) {
device_printf(dev, "can't allocate memory resources\n");
return (ENOMEM);
@@ -277,8 +277,8 @@ ida_pci_attach(device_t dev)
rid = 0;
ida->irq_res_type = SYS_RES_IRQ;
- ida->irq = bus_alloc_resource(dev, ida->irq_res_type, &rid,
- 0, ~0, 1, RF_ACTIVE | RF_SHAREABLE);
+ ida->irq = bus_alloc_resource_any(dev, ida->irq_res_type, &rid,
+ RF_ACTIVE | RF_SHAREABLE);
if (ida->irq == NULL) {
ida_free(ida);
return (ENOMEM);
OpenPOWER on IntegriCloud