diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2004-03-17 17:50:55 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2004-03-17 17:50:55 +0000 |
| commit | 5f96beb9e08be2b08309a6b98967246b64272ade (patch) | |
| tree | a1c3f00139d832c8e80338cfc56c8b1aaffd88ab /sys/dev/digi | |
| parent | 902aa2e784bda6cef99fb99db6acd4f435a3ff09 (diff) | |
Notes
Diffstat (limited to 'sys/dev/digi')
| -rw-r--r-- | sys/dev/digi/digi_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/digi/digi_pci.c b/sys/dev/digi/digi_pci.c index a97345edf304..d80150de933e 100644 --- a/sys/dev/digi/digi_pci.c +++ b/sys/dev/digi/digi_pci.c @@ -177,13 +177,13 @@ digi_pci_attach(device_t dev) pci_write_config(dev, 0x40, 0, 4); pci_write_config(dev, 0x46, 0, 4); - sc->res.mem = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->res.mrid, - 0, ~0, 1, RF_ACTIVE); + sc->res.mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->res.mrid, + RF_ACTIVE); #ifdef DIGI_INTERRUPT sc->res.irqrid = 0; - sc->res.irq = bus_alloc_resource(dev, SYS_RES_IRQ, &sc->res.irqrid, - 0, ~0, 1, RF_SHAREABLE | RF_ACTIVE); + sc->res.irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->res.irqrid, + RF_SHAREABLE | RF_ACTIVE); if (sc->res.irq == NULL) { device_printf(dev, "couldn't map interrupt\n"); return (ENXIO); |
