Module Name: src
Committed By: rkujawa
Date: Sat Jul 14 05:32:17 UTC 2012
Modified Files:
src/share/man/man9: pci_configure_bus.9
Log Message:
extent_create does not take storage type argument anymore.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/share/man/man9/pci_configure_bus.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man9/pci_configure_bus.9
diff -u src/share/man/man9/pci_configure_bus.9:1.15 src/share/man/man9/pci_configure_bus.9:1.16
--- src/share/man/man9/pci_configure_bus.9:1.15 Mon Mar 22 18:58:33 2010
+++ src/share/man/man9/pci_configure_bus.9 Sat Jul 14 05:32:17 2012
@@ -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 @@ function might be called as follows:
.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);