svn commit: r230702 - stable/8/sys/dev/esp

Marius Strobl marius at FreeBSD.org
Sun Jan 29 00:47:14 UTC 2012


Author: marius
Date: Sun Jan 29 00:47:14 2012
New Revision: 230702
URL: http://svn.freebsd.org/changeset/base/230702

Log:
  MFC: r226950
  
  Add multiple inclusion protection.

Modified:
  stable/8/sys/dev/esp/ncr53c9xreg.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/esp/ncr53c9xreg.h
==============================================================================
--- stable/8/sys/dev/esp/ncr53c9xreg.h	Sun Jan 29 00:47:11 2012	(r230701)
+++ stable/8/sys/dev/esp/ncr53c9xreg.h	Sun Jan 29 00:47:14 2012	(r230702)
@@ -31,6 +31,9 @@
 
 /* $FreeBSD$ */
 
+#ifndef _NCR53C9XREG_H_
+#define	_NCR53C9XREG_H_
+
 /*
  * Register addresses, relative to some base address
  */
@@ -288,3 +291,4 @@
 #define	NCRFAS_STAT2_OSHUTTLE 0x40	   /* next byte	from FIFO is MSB */
 #define	NCRFAS_STAT2_EMPTY    0x80	   /* FIFO is empty */
 
+#endif /* _NCR53C9XREG_H_ */


More information about the svn-src-stable mailing list