diff options
author | marius <marius@FreeBSD.org> | 2011-10-30 21:45:36 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2011-10-30 21:45:36 +0000 |
commit | 0b6a3b7ea2cbe40b710f890809cbd7885b6f7e46 (patch) | |
tree | ec8472c94d5d8b7a6c9dbfa7b63172d4bbc7a172 | |
parent | 3ba0346c4dc526932b662b354c8ed0212ed6ce5e (diff) | |
download | FreeBSD-src-0b6a3b7ea2cbe40b710f890809cbd7885b6f7e46.zip FreeBSD-src-0b6a3b7ea2cbe40b710f890809cbd7885b6f7e46.tar.gz |
Add multiple inclusion protection.
-rw-r--r-- | sys/dev/esp/ncr53c9xreg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/esp/ncr53c9xreg.h b/sys/dev/esp/ncr53c9xreg.h index ab03421..dffbf7c 100644 --- a/sys/dev/esp/ncr53c9xreg.h +++ b/sys/dev/esp/ncr53c9xreg.h @@ -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_ */ |