Date: Sun, 30 Oct 2011 21:45:36 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r226950 - head/sys/dev/esp Message-ID: <201110302145.p9ULjaWB086180@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Sun Oct 30 21:45:36 2011 New Revision: 226950 URL: http://svn.freebsd.org/changeset/base/226950 Log: Add multiple inclusion protection. Modified: head/sys/dev/esp/ncr53c9xreg.h Modified: head/sys/dev/esp/ncr53c9xreg.h ============================================================================== --- head/sys/dev/esp/ncr53c9xreg.h Sun Oct 30 21:42:35 2011 (r226949) +++ head/sys/dev/esp/ncr53c9xreg.h Sun Oct 30 21:45:36 2011 (r226950) @@ -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_ */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110302145.p9ULjaWB086180>