Source-Changes-HG archive

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

[src/trunk]: src/share/man/man9 Add pci_get_ht_capability(9) man.



details:   https://anonhg.NetBSD.org/src/rev/254c81181f10
branches:  trunk
changeset: 810005:254c81181f10
user:      knakahara <knakahara%NetBSD.org@localhost>
date:      Fri Aug 14 02:04:16 2015 +0000

description:
Add pci_get_ht_capability(9) man.

diffstat:

 share/man/man9/Makefile |   3 ++-
 share/man/man9/pci.9    |  12 ++++++++++--
 2 files changed, 12 insertions(+), 3 deletions(-)

diffs (64 lines):

diff -r ca0278e927a0 -r 254c81181f10 share/man/man9/Makefile
--- a/share/man/man9/Makefile   Fri Aug 14 01:26:38 2015 +0000
+++ b/share/man/man9/Makefile   Fri Aug 14 02:04:16 2015 +0000
@@ -1,4 +1,4 @@
-#       $NetBSD: Makefile,v 1.389 2015/07/21 03:12:50 knakahara Exp $
+#       $NetBSD: Makefile,v 1.390 2015/08/14 02:04:16 knakahara Exp $
 
 #      Makefile for section 9 (kernel function and variable) manual pages.
 
@@ -558,6 +558,7 @@
        pci.9 pci_conf_print.9 \
        pci.9 pci_find_device.9 \
        pci.9 pci_get_capability.9 \
+       pci.9 pci_get_ht_capability.9 \
        pci.9 pci_mapreg_type.9 \
        pci.9 pci_mapreg_map.9 \
        pci.9 pci_mapreg_info.9 \
diff -r ca0278e927a0 -r 254c81181f10 share/man/man9/pci.9
--- a/share/man/man9/pci.9      Fri Aug 14 01:26:38 2015 +0000
+++ b/share/man/man9/pci.9      Fri Aug 14 02:04:16 2015 +0000
@@ -1,4 +1,4 @@
-.\"     $NetBSD: pci.9,v 1.38 2014/10/27 14:41:42 wiz Exp $
+.\"     $NetBSD: pci.9,v 1.39 2015/08/14 02:04:16 knakahara Exp $
 .\"
 .\" Copyright (c) 2001, 2003 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 October 27, 2014
+.Dd August 14, 2015
 .Dt PCI 9
 .Os
 .Sh NAME
@@ -43,6 +43,7 @@
 .Nm pci_conf_restore ,
 .Nm pci_find_device ,
 .Nm pci_get_capability ,
+.Nm pci_get_ht_capability ,
 .Nm pci_mapreg_type ,
 .Nm pci_mapreg_map ,
 .Nm pci_mapreg_info ,
@@ -99,6 +100,9 @@
 .Ft int
 .Fn pci_get_capability "pci_chipset_tag_t pc" "pcitag_t tag" \
 "int capid" "int *offsetp" "pcireg_t *valuep"
+.Ft int
+.Fn pci_get_ht_capability "pci_chipset_tag_t pc" "pcitag_t tag" \
+"int *offsetp" "pcireg_t *valuep"
 .Ft pcireg_t
 .Fn pci_mapreg_type "pci_chipset_tag_t pc" "pcitag_t tag" "int reg"
 .Ft int
@@ -462,6 +466,10 @@
 and
 .Fa valuep
 remain unchanged.
+.It Fn pci_get_ht_capability "pc" "tag" "offsetp" "valuep"
+This function is about the same as
+.Fn pci_get_capability .
+This function specializes in HyperTransport capability.
 .It Fn pci_mapreg_type "pc" "tag" "reg"
 Interrogates the Base Address Register (BAR) in configuration space
 specified by



Home | Main Index | Thread Index | Old Index