summaryrefslogtreecommitdiff
path: root/sys/arch/i386/pci
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-07-05 10:00:50 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-07-05 10:00:50 +0000
commit1e2cb14a7562811bb477e028c5c11fbf1f89176f (patch)
treece5329ce6874a2f327d77ef99c3fc8767b1a680c /sys/arch/i386/pci
parent1a1b7b490a3552db79a9bc6aa95a2de2faf5b30a (diff)
Get rid of the wrapper macros around extent_alloc*1
Pass the right amount of arguments and rename them back to their right names.
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r--sys/arch/i386/pci/pci_addr_fixup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pci_addr_fixup.c b/sys/arch/i386/pci/pci_addr_fixup.c
index a6f58407f91..e19ee40a952 100644
--- a/sys/arch/i386/pci/pci_addr_fixup.c
+++ b/sys/arch/i386/pci/pci_addr_fixup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_addr_fixup.c,v 1.10 2001/06/17 21:11:12 mickey Exp $ */
+/* $OpenBSD: pci_addr_fixup.c,v 1.11 2001/07/05 10:00:33 art Exp $ */
/* $NetBSD: pci_addr_fixup.c,v 1.7 2000/08/03 20:10:45 nathanw Exp $ */
/*-
@@ -291,7 +291,7 @@ pciaddr_do_resource_allocate(sc, pc, tag, mapreg, ex, type, addr, size)
PCIBIOS_PRINTV(("No available resources. fixup failed\n"));
return (1);
}
- error = extent_alloc_subregion(ex, start, ex->ex_end, size, size, 0,
+ error = extent_alloc_subregion(ex, start, ex->ex_end, size, size, 0, 0,
EX_FAST|EX_NOWAIT|EX_MALLOCOK, addr);
if (error) {
PCIBIOS_PRINTV(("No available resources. fixup failed\n"));