Module Name:    src
Committed By:   pgoyette
Date:           Fri May 28 02:24:27 UTC 2010

Modified Files:
        src/sys/dev/pci: pci_verbose.h

Log Message:
Fix symbol name in multiple-inclusion protection. (missing trailing '_')


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/pci_verbose.h

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_verbose.h
diff -u src/sys/dev/pci/pci_verbose.h:1.1 src/sys/dev/pci/pci_verbose.h:1.2
--- src/sys/dev/pci/pci_verbose.h:1.1	Thu May 27 05:53:35 2010
+++ src/sys/dev/pci/pci_verbose.h	Fri May 28 02:24:27 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_verbose.h,v 1.1 2010/05/27 05:53:35 pgoyette Exp $ */
+/*	$NetBSD: pci_verbose.h,v 1.2 2010/05/28 02:24:27 pgoyette Exp $ */
 
 /*
  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #ifndef _DEV_PCI_PCIVERBOSE_H_
-#define	_DEV_PCI_PCIVERBOSE_H
+#define	_DEV_PCI_PCIVERBOSE_H_
 
 /*
  * Misc.
@@ -47,4 +47,4 @@
 extern const char *(*pci_findproduct)(pcireg_t);
 extern const char *pci_unmatched;
 
-#endif /* _DEV_PCI_PCIVERBOSE_H */
+#endif /* _DEV_PCI_PCIVERBOSE_H_ */

Reply via email to