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/pci | |
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/pci')
-rw-r--r-- | sys/dev/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index aba24ca..c4a1147 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -790,7 +790,7 @@ pci_add_resources(device_t pcib, device_t bus, device_t dev) s = cfg->slot; f = cfg->func; for (i = 0; i < cfg->nummaps;) { - i += pci_add_map(pcib, b, s, f, PCIR_MAPS + i*4, rl); + i += pci_add_map(pcib, b, s, f, PCIR_BAR(i), rl); } for (q = &pci_quirks[0]; q->devid; q++) { |