summaryrefslogtreecommitdiffstats
path: root/sys/dev/zs/zs_macio.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/zs/zs_macio.c')
-rw-r--r--sys/dev/zs/zs_macio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/zs/zs_macio.c b/sys/dev/zs/zs_macio.c
index 264563f..7d4e179 100644
--- a/sys/dev/zs/zs_macio.c
+++ b/sys/dev/zs/zs_macio.c
@@ -146,15 +146,15 @@ zs_macio_attach(device_t dev)
sc = device_get_softc(dev);
reg = macio_get_regs(dev);
- sc->sc_memres = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->sc_memrid,
- 0, ~1, 1, RF_ACTIVE);
+ sc->sc_memres = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
+ &sc->sc_memrid, RF_ACTIVE);
if (sc->sc_memres == NULL) {
device_printf(dev, "could not allocate memory\n");
goto error;
}
sc->sc_irqrid1 = 0;
- sc->sc_irqres1 = bus_alloc_resource(dev, SYS_RES_IRQ, &sc->sc_irqrid1,
- 0, ~0, 1, RF_ACTIVE);
+ sc->sc_irqres1 = bus_alloc_resource_any(dev, SYS_RES_IRQ,
+ &sc->sc_irqrid1, RF_ACTIVE);
if (sc->sc_irqres1 == NULL) {
device_printf(dev, "could not allocate interrupt 1\n");
goto error;
@@ -165,8 +165,8 @@ zs_macio_attach(device_t dev)
goto error;
}
sc->sc_irqrid2 = 1;
- sc->sc_irqres2 = bus_alloc_resource(dev, SYS_RES_IRQ, &sc->sc_irqrid2,
- 0, ~0, 1, RF_ACTIVE);
+ sc->sc_irqres2 = bus_alloc_resource_any(dev, SYS_RES_IRQ,
+ &sc->sc_irqrid2, RF_ACTIVE);
if (sc->sc_irqres2 == NULL) {
device_printf(dev, "could not allocate interrupt 2\n");
goto error;
OpenPOWER on IntegriCloud