Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man9 Fix type of pc argument in pci_intr(9) man page.



details:   https://anonhg.NetBSD.org/src/rev/1fbab54a9d68
branches:  trunk
changeset: 806467:1fbab54a9d68
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Wed Feb 25 17:03:42 2015 +0000

description:
Fix type of pc argument in pci_intr(9) man page.

diffstat:

 share/man/man9/pci_intr.9 |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (34 lines):

diff -r 0cc224bcf52f -r 1fbab54a9d68 share/man/man9/pci_intr.9
--- a/share/man/man9/pci_intr.9 Wed Feb 25 16:23:40 2015 +0000
+++ b/share/man/man9/pci_intr.9 Wed Feb 25 17:03:42 2015 +0000
@@ -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



Home | Main Index | Thread Index | Old Index