Tue Apr 14 13:28:34 2015 UTC ()
Pull up following revision(s) (requested by riastradh in ticket #1272):
	share/man/man9/pci_intr.9: revision 1.18 via patch
Fix type of pc argument in pci_intr(9) man page.


(msaitoh)
diff -r1.15 -r1.15.6.1 src/share/man/man9/pci_intr.9

cvs diff -r1.15 -r1.15.6.1 src/share/man/man9/pci_intr.9 (expand / switch to context diff)
--- src/share/man/man9/pci_intr.9 2011/04/05 14:57:33 1.15
+++ src/share/man/man9/pci_intr.9 2015/04/14 13:28:34 1.15.6.1
@@ -1,4 +1,4 @@
-.\" $NetBSD: pci_intr.9,v 1.15 2011/04/05 14:57:33 dyoung Exp $
+.\" $NetBSD: pci_intr.9,v 1.15.6.1 2015/04/14 13:28:34 msaitoh 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 April 5, 2011
+.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"
+.Fn pci_intr_string "pci_chipset_tag_t pc" "pci_intr_handle_t ih"
 .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