diff options
author | jhb <jhb@FreeBSD.org> | 2003-09-02 17:30:40 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2003-09-02 17:30:40 +0000 |
commit | dc11e45b68dec5003e226a26f7fa2ee9a1e351c2 (patch) | |
tree | 1a7743437055722d93fce73b145dde1eb1915e7f /sys/dev/amr/amr_pci.c | |
parent | 480ed8b5934d938866a31bd84aa636de31845487 (diff) | |
download | FreeBSD-src-dc11e45b68dec5003e226a26f7fa2ee9a1e351c2.zip FreeBSD-src-dc11e45b68dec5003e226a26f7fa2ee9a1e351c2.tar.gz |
Use PCIR_BAR(x) instead of PCIR_MAPS.
Glanced over by: imp, gibbs
Tested by: i386 LINT
Diffstat (limited to 'sys/dev/amr/amr_pci.c')
-rw-r--r-- | sys/dev/amr/amr_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/amr/amr_pci.c b/sys/dev/amr/amr_pci.c index 9deec7d..5a67a55 100644 --- a/sys/dev/amr/amr_pci.c +++ b/sys/dev/amr/amr_pci.c @@ -210,7 +210,7 @@ amr_pci_attach(device_t dev) /* * Allocate the PCI register window. */ - rid = PCIR_MAPS; + rid = PCIR_BAR(0); rtype = AMR_IS_QUARTZ(sc) ? SYS_RES_MEMORY : SYS_RES_IOPORT; sc->amr_reg = bus_alloc_resource(dev, rtype, &rid, 0, ~0, 1, RF_ACTIVE); if (sc->amr_reg == NULL) { @@ -468,7 +468,7 @@ amr_pci_free(struct amr_softc *sc) if (sc->amr_reg != NULL) bus_release_resource(sc->amr_dev, AMR_IS_QUARTZ(sc) ? SYS_RES_MEMORY : SYS_RES_IOPORT, - PCIR_MAPS, sc->amr_reg); + PCIR_BAR(0), sc->amr_reg); } /******************************************************************************** |