Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/share/man/man9 extent_create does not take storage type argu...
details: https://anonhg.NetBSD.org/src/rev/25a7930e229c
branches: trunk
changeset: 780167:25a7930e229c
user: rkujawa <rkujawa%NetBSD.org@localhost>
date: Sat Jul 14 05:32:17 2012 +0000
description:
extent_create does not take storage type argument anymore.
diffstat:
share/man/man9/pci_configure_bus.9 | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (21 lines):
diff -r c245828a9c9b -r 25a7930e229c share/man/man9/pci_configure_bus.9
--- a/share/man/man9/pci_configure_bus.9 Sat Jul 14 04:06:17 2012 +0000
+++ b/share/man/man9/pci_configure_bus.9 Sat Jul 14 05:32:17 2012 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: pci_configure_bus.9,v 1.15 2010/03/22 18:58:33 joerg Exp $
+.\" $NetBSD: pci_configure_bus.9,v 1.16 2012/07/14 05:32:17 rkujawa Exp $
.\"
.\" Copyright 2001 Wasabi Systems, Inc.
.\" All rights reserved.
@@ -257,9 +257,9 @@
.Bd -literal -compact
struct extent *ioext, *memext;
...
- ioext = extent_create("pciio", 0x01000000, 0x0fffffff, M_DEVBUF,
+ ioext = extent_create("pciio", 0x01000000, 0x0fffffff,
NULL, 0, EX_NOWAIT);
- memext = extent_create("pcimem", 0x00000000, 0x0fffffff, M_DEVBUF,
+ memext = extent_create("pcimem", 0x00000000, 0x0fffffff,
NULL, 0, EX_NOWAIT);
...
pci_configure_bus(0, ioext, memext, NULL);
Home |
Main Index |
Thread Index |
Old Index