Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/dev/pci Pull up following revision(s) (requested by m...



details:   https://anonhg.NetBSD.org/src/rev/c372a38efe90
branches:  netbsd-8
changeset: 852434:c372a38efe90
user:      martin <martin%NetBSD.org@localhost>
date:      Wed Jul 17 15:34:31 2019 +0000

description:
Pull up following revision(s) (requested by msaitoh in ticket #1292):

        sys/dev/pci/pci_subr.c: revision 1.211
        sys/dev/pci/pci_subr.c: revision 1.214

Typo (s/vaule/value/)
Print extend capability from 0x25 to 0x29 correctly.

diffstat:

 sys/dev/pci/pci_subr.c |  11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diffs (46 lines):

diff -r cbab8f49098a -r c372a38efe90 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Wed Jul 17 15:29:41 2019 +0000
+++ b/sys/dev/pci/pci_subr.c    Wed Jul 17 15:34:31 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.183.2.9 2018/12/04 11:29:41 martin Exp $        */
+/*     $NetBSD: pci_subr.c,v 1.183.2.10 2019/07/17 15:34:31 martin Exp $       */
 
 /*
  * Copyright (c) 1997 Zubin D. Dittia.  All rights reserved.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.183.2.9 2018/12/04 11:29:41 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.183.2.10 2019/07/17 15:34:31 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -3726,7 +3726,7 @@
                printf("Device Specific Mode\n");
                break;
        default:
-               printf("(reserved vaule)\n");
+               printf("(reserved value)\n");
                break;
        }
        printf("      TPH Requester Enable: ");
@@ -3741,7 +3741,7 @@
                printf("TPH and Extended TPH");
                break;
        default:
-               printf("(reserved vaule)\n");
+               printf("(reserved value)\n");
                break;
        }
 
@@ -4240,6 +4240,9 @@
          NULL },
        { PCI_EXTCAP_VF_RESIZBAR, "VF Resizable BARs",
          NULL },
+       { 0x25, "unknown", NULL },
+       { 0x26, "unknown", NULL },
+       { 0x27, "unknown", NULL },
        { PCI_EXTCAP_HIERARCHYID, "Hierarchy ID",
          NULL },
        { PCI_EXTCAP_NPEM,      "Native PCIe Enclosure Management",



Home | Main Index | Thread Index | Old Index