summaryrefslogtreecommitdiffstats
path: root/sys/dev/ida/ida_eisa.c
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2004-03-17 17:50:55 +0000
committernjl <njl@FreeBSD.org>2004-03-17 17:50:55 +0000
commit05a1f56fc999f634406946e831eea6deaaa75a99 (patch)
treea1c3f00139d832c8e80338cfc56c8b1aaffd88ab /sys/dev/ida/ida_eisa.c
parent2283471bb53a546e9d7dfb662c8db5ca06907c85 (diff)
downloadFreeBSD-src-05a1f56fc999f634406946e831eea6deaaa75a99.zip
FreeBSD-src-05a1f56fc999f634406946e831eea6deaaa75a99.tar.gz
Convert callers to the new bus_alloc_resource_any(9) API.
Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde
Diffstat (limited to 'sys/dev/ida/ida_eisa.c')
-rw-r--r--sys/dev/ida/ida_eisa.c8
1 files changed, 4 insertions, 4 deletions
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);
OpenPOWER on IntegriCloud