From 05a1f56fc999f634406946e831eea6deaaa75a99 Mon Sep 17 00:00:00 2001 From: njl Date: Wed, 17 Mar 2004 17:50:55 +0000 Subject: Convert callers to the new bus_alloc_resource_any(9) API. Submitted by: Mark Santcroos Reviewed by: imp, dfr, bde --- sys/dev/ida/ida_eisa.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev/ida/ida_eisa.c') diff --git a/sys/dev/ida/ida_eisa.c b/sys/dev/ida/ida_eisa.c index cd9741c..7bf0036 100644 --- a/sys/dev/ida/ida_eisa.c +++ b/sys/dev/ida/ida_eisa.c @@ -285,8 +285,8 @@ ida_eisa_attach(device_t dev) ida->regs_res_type = SYS_RES_IOPORT; ida->regs_res_id = 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 register resources\n"); return (ENOMEM); @@ -316,8 +316,8 @@ ida_eisa_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); -- cgit v1.1