diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-09-24 07:38:39 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-09-24 07:38:39 +0000 |
commit | 864b2c5cf2e4f64ba4de9388ba16a6243fc3c720 (patch) | |
tree | 0d7037caa286ab39dc2e0ea984f679efbed73d62 /sys/dev/pci/pciide_nforce_reg.h | |
parent | bc6e3bf578ff8bd49cf29fd46cdf30d5eeba6c2d (diff) |
Multiple inclusion protection.
Diffstat (limited to 'sys/dev/pci/pciide_nforce_reg.h')
-rw-r--r-- | sys/dev/pci/pciide_nforce_reg.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/pci/pciide_nforce_reg.h b/sys/dev/pci/pciide_nforce_reg.h index d0745d8e45b..9df5f8cdd5e 100644 --- a/sys/dev/pci/pciide_nforce_reg.h +++ b/sys/dev/pci/pciide_nforce_reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide_nforce_reg.h,v 1.2 2003/12/12 13:00:38 grange Exp $ */ +/* $OpenBSD: pciide_nforce_reg.h,v 1.3 2004/09/24 07:38:38 grange Exp $ */ /* * Copyright (c) 2003 Alexander Yurchenko <grange@openbsd.org> @@ -25,6 +25,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#ifndef _DEV_PCI_PCIIDE_NFORCE_REG_H_ +#define _DEV_PCI_PCIIDE_NFORCE_REG_H_ + /* Configuration register */ #define NFORCE_CONF 0x50 #define NFORCE_CHAN_EN(chan) \ @@ -54,3 +57,5 @@ /* Timing values */ static u_int8_t nforce_pio[] = { 0xa8, 0x65, 0x42, 0x22, 0x20 }; static u_int8_t nforce_udma[] = { 0x02, 0x01, 0x00, 0x04, 0x05, 0x06, 0x07 }; + +#endif /* !_DEV_PCI_PCIIDE_NFORCE_REG_H_ */ |