aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sbni
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2003-09-02 17:30:40 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2003-09-02 17:30:40 +0000
commite27951b29c565206b57c8cdbc2ac344485c2f4f5 (patch)
tree1a7743437055722d93fce73b145dde1eb1915e7f /sys/dev/sbni
parent56802c46e21d0c72a5f0550f2cb1f2a155ceb633 (diff)
downloadsrc-e27951b29c565206b57c8cdbc2ac344485c2f4f5.tar.gz
src-e27951b29c565206b57c8cdbc2ac344485c2f4f5.zip
Use PCIR_BAR(x) instead of PCIR_MAPS.
Glanced over by: imp, gibbs Tested by: i386 LINT
Notes
Notes: svn path=/head/; revision=119690
Diffstat (limited to 'sys/dev/sbni')
-rw-r--r--sys/dev/sbni/if_sbni_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sbni/if_sbni_pci.c b/sys/dev/sbni/if_sbni_pci.c
index 4965c21a59ca..bba4f24eddb9 100644
--- a/sys/dev/sbni/if_sbni_pci.c
+++ b/sys/dev/sbni/if_sbni_pci.c
@@ -93,7 +93,7 @@ sbni_pci_probe(device_t dev)
} else
device_set_desc(dev, "Granch SBNI12/PCI adapter");
- sc->io_rid = PCIR_MAPS;
+ sc->io_rid = PCIR_BAR(0);
sc->io_res = bus_alloc_resource(dev, SYS_RES_IOPORT, &sc->io_rid,
0ul, ~0ul, ports, RF_ACTIVE);
if (!sc->io_res) {