Module Name:    src
Committed By:   kre
Date:           Fri Apr 21 11:49:31 UTC 2017

Modified Files:
        src/sys/dev/pci: pci_subr.c

Log Message:
For want of a comma, the compiler was lost.


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/sys/dev/pci/pci_subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/pci_subr.c
diff -u src/sys/dev/pci/pci_subr.c:1.177 src/sys/dev/pci/pci_subr.c:1.178
--- src/sys/dev/pci/pci_subr.c:1.177	Fri Apr 21 09:01:52 2017
+++ src/sys/dev/pci/pci_subr.c	Fri Apr 21 11:49:31 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_subr.c,v 1.177 2017/04/21 09:01:52 msaitoh Exp $	*/
+/*	$NetBSD: pci_subr.c,v 1.178 2017/04/21 11:49:31 kre 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.177 2017/04/21 09:01:52 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.178 2017/04/21 11:49:31 kre Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -2311,7 +2311,7 @@ static struct {
 	{ PCI_CAP_MSIX,		"MSI-X",	pci_conf_print_msix_cap },
 	{ PCI_CAP_SATA,		"SATA",		pci_conf_print_sata_cap },
 	{ PCI_CAP_PCIAF,	"Advanced Features", pci_conf_print_pciaf_cap},
-	{ PCI_CAP_EA,		"Enhanced Allocation", NULL }
+	{ PCI_CAP_EA,		"Enhanced Allocation", NULL },
 	{ PCI_CAP_FPB,		"Flattening Portal Bridge", NULL }
 };
 

Reply via email to