Module Name: src
Committed By: riastradh
Date: Wed Feb 25 17:03:42 UTC 2015
Modified Files:
src/share/man/man9: pci_intr.9
Log Message:
Fix type of pc argument in pci_intr(9) man page.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/share/man/man9/pci_intr.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_intr.9
diff -u src/share/man/man9/pci_intr.9:1.17 src/share/man/man9/pci_intr.9:1.18
--- src/share/man/man9/pci_intr.9:1.17 Sun Mar 30 23:28:14 2014
+++ src/share/man/man9/pci_intr.9 Wed Feb 25 17:03:42 2015
@@ -1,4 +1,4 @@
-.\" $NetBSD: pci_intr.9,v 1.17 2014/03/30 23:28:14 christos Exp $
+.\" $NetBSD: pci_intr.9,v 1.18 2015/02/25 17:03:42 riastradh Exp $
.\"
.\" Copyright (c) 2000 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd March 30, 2014
+.Dd February 25, 2015
.Dt PCI_INTR 9
.Os
.Sh NAME
@@ -42,12 +42,12 @@
.Ft int
.Fn pci_intr_map "const struct pci_attach_args *pa" "pci_intr_handle_t *ih"
.Ft const char *
-.Fn pci_intr_string "pci_chipset_t *pc" "pci_intr_handle_t ih" "char *buf" "size_t len"
+.Fn pci_intr_string "pci_chipset_tag_t pc" "pci_intr_handle_t ih" "char *buf" "size_t len"
.Ft void *
-.Fn pci_intr_establish "pci_chipset_t *pc" "pci_intr_handle_t ih" \
+.Fn pci_intr_establish "pci_chipset_tag_t pc" "pci_intr_handle_t ih" \
"int ipl" "int (*intrhand)(void *)" "void *intrarg"
.Ft void
-.Fn pci_intr_disestablish "pci_chipset_t *pc" "void *ih"
+.Fn pci_intr_disestablish "pci_chipset_tag_t pc" "void *ih"
.Sh DESCRIPTION
The
.Nm