summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>2000-11-13 13:43:02 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>2000-11-13 13:43:02 +0000
commit2527a9046518f105303d9f629f5b78f8de26a113 (patch)
tree28484b38ba98e516c143f8c7f0a01a4d6c468f63 /sys/dev
parentbce454948ded2e0f6f17bc385517b4ce84986522 (diff)
make compile with !UVM
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/aha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c
index f5822b56a62..d089147b532 100644
--- a/sys/dev/isa/aha.c
+++ b/sys/dev/isa/aha.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aha.c,v 1.35 2000/04/19 02:17:49 niklas Exp $ */
+/* $OpenBSD: aha.c,v 1.36 2000/11/13 13:43:01 niklas Exp $ */
/* $NetBSD: aha.c,v 1.11 1996/05/12 23:51:23 mycroft Exp $ */
#undef AHADIAG
@@ -1083,7 +1083,7 @@ aha_init(sc)
wmbx = (struct aha_mbx *)uvm_pagealloc_contig(sizeof(struct aha_mbx),
0, 0xffffff, PAGE_SIZE);
#else
- wmbx = (struct aha_mbx *)vm_pagealloc_contig(sizeof(struct aha_mbx),
+ wmbx = (struct aha_mbx *)vm_page_alloc_contig(sizeof(struct aha_mbx),
0, 0xffffff, PAGE_SIZE);
#endif
if (wmbx == NULL)