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 unified 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,14 +1,14 @@ @@ -1,14 +1,14 @@
1.\" $NetBSD: pci_intr.9,v 1.15 2011/04/05 14:57:33 dyoung Exp $ 1.\" $NetBSD: pci_intr.9,v 1.15.6.1 2015/04/14 13:28:34 msaitoh Exp $
2.\" 2.\"
3.\" Copyright (c) 2000 The NetBSD Foundation, Inc. 3.\" Copyright (c) 2000 The NetBSD Foundation, Inc.
4.\" All rights reserved. 4.\" All rights reserved.
5.\" 5.\"
6.\" This code is derived from software contributed to The NetBSD Foundation 6.\" This code is derived from software contributed to The NetBSD Foundation
7.\" by Bill Sommerfeld 7.\" by Bill Sommerfeld
8.\" 8.\"
9.\" Redistribution and use in source and binary forms, with or without 9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions 10.\" modification, are permitted provided that the following conditions
11.\" are met: 11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright 12.\" 1. Redistributions of source code must retain the above copyright
13.\" notice, this list of conditions and the following disclaimer. 13.\" notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright 14.\" 2. Redistributions in binary form must reproduce the above copyright
@@ -17,47 +17,47 @@ @@ -17,47 +17,47 @@
17.\" 17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 18.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 19.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 20.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 21.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28.\" POSSIBILITY OF SUCH DAMAGE. 28.\" POSSIBILITY OF SUCH DAMAGE.
29.\" 29.\"
30.Dd April 5, 2011 30.Dd February 25, 2015
31.Dt PCI_INTR 9 31.Dt PCI_INTR 9
32.Os 32.Os
33.Sh NAME 33.Sh NAME
34.Nm pci_intr , 34.Nm pci_intr ,
35.Nm pci_intr_map , 35.Nm pci_intr_map ,
36.Nm pci_intr_string , 36.Nm pci_intr_string ,
37.Nm pci_intr_establish , 37.Nm pci_intr_establish ,
38.Nm pci_intr_disestablish 38.Nm pci_intr_disestablish
39.Nd PCI bus interrupt manipulation functions 39.Nd PCI bus interrupt manipulation functions
40.Sh SYNOPSIS 40.Sh SYNOPSIS
41.In dev/pci/pcivar.h 41.In dev/pci/pcivar.h
42.Ft int 42.Ft int
43.Fn pci_intr_map "const struct pci_attach_args *pa" "pci_intr_handle_t *ih" 43.Fn pci_intr_map "const struct pci_attach_args *pa" "pci_intr_handle_t *ih"
44.Ft const char * 44.Ft const char *
45.Fn pci_intr_string "pci_chipset_t *pc" "pci_intr_handle_t ih" 45.Fn pci_intr_string "pci_chipset_tag_t pc" "pci_intr_handle_t ih"
46.Ft void * 46.Ft void *
47.Fn pci_intr_establish "pci_chipset_t *pc" "pci_intr_handle_t ih" \ 47.Fn pci_intr_establish "pci_chipset_tag_t pc" "pci_intr_handle_t ih" \
48"int ipl" "int (*intrhand)(void *)" "void *intrarg" 48"int ipl" "int (*intrhand)(void *)" "void *intrarg"
49.Ft void 49.Ft void
50.Fn pci_intr_disestablish "pci_chipset_t *pc" "void *ih" 50.Fn pci_intr_disestablish "pci_chipset_tag_t pc" "void *ih"
51.Sh DESCRIPTION 51.Sh DESCRIPTION
52The 52The
53.Nm 53.Nm
54functions exist to allow device drivers machine-independent access to 54functions exist to allow device drivers machine-independent access to
55PCI bus interrupts. 55PCI bus interrupts.
56The functions described in this page are typically declared in a port's 56The functions described in this page are typically declared in a port's
57.In machine/pci_machdep.h 57.In machine/pci_machdep.h
58header file; however, drivers should generally include 58header file; however, drivers should generally include
59.In dev/pci/pcivar.h 59.In dev/pci/pcivar.h
60to get other PCI-specific declarations as well. 60to get other PCI-specific declarations as well.
61.Pp 61.Pp
62Each driver has an 62Each driver has an
63.Fn attach 63.Fn attach