summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorPeter Valchev <pvalchev@cvs.openbsd.org>2004-04-20 15:04:11 +0000
committerPeter Valchev <pvalchev@cvs.openbsd.org>2004-04-20 15:04:11 +0000
commit9d78ef8b82b6ef159fd1d2ae9a073c3523781f94 (patch)
tree2e59799d8a4bbb07bc84ed44dde42574bdaafd87 /sys/dev/isa
parenta875d3050fd272796f96e73f73d8ce57692a9176 (diff)
protect from multiple inclusion; ok miod
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/isadmavar.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/isa/isadmavar.h b/sys/dev/isa/isadmavar.h
index a2a0093a5e9..8f2a40a13c3 100644
--- a/sys/dev/isa/isadmavar.h
+++ b/sys/dev/isa/isadmavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: isadmavar.h,v 1.14 2002/06/10 22:27:33 niklas Exp $ */
+/* $OpenBSD: isadmavar.h,v 1.15 2004/04/20 15:04:10 pvalchev Exp $ */
/* $NetBSD: isadmavar.h,v 1.10 1997/08/04 22:13:33 augustss Exp $ */
/*-
@@ -38,6 +38,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#ifndef _DEV_ISA_ISADMAVAR_H
+#define _DEV_ISA_ISADMAVAR_H
+
/* XXX for now... */
#ifndef __ISADMA_COMPAT
#define __ISADMA_COMPAT
@@ -93,3 +96,5 @@ int isa_drq_isfree(struct device *, int);
void *isa_malloc(struct device *, int, size_t, int, int);
void isa_free(void *, int);
paddr_t isa_mappage(void *, off_t, int);
+
+#endif /* _DEV_ISA_ISADMAVAR_H */