diff options
author | wollman <wollman@FreeBSD.org> | 1993-11-07 17:44:34 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1993-11-07 17:44:34 +0000 |
commit | bd2b2815f291360b8d6f823a643e5c9c89064acf (patch) | |
tree | 8181e139e7414ba85de90570a27a8738e38f9636 /sys/i386/isa/isa.h | |
parent | 371ee40cea1e168ed119bcd1cde2809629c4ac68 (diff) | |
download | FreeBSD-src-bd2b2815f291360b8d6f823a643e5c9c89064acf.zip FreeBSD-src-bd2b2815f291360b8d6f823a643e5c9c89064acf.tar.gz |
Made all header files idempotent and moved incorrect common data from
headers into a related source file. Also fixed a bug in ed_probe() where
it was possible to fall off the end of the function
Diffstat (limited to 'sys/i386/isa/isa.h')
-rw-r--r-- | sys/i386/isa/isa.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/isa/isa.h b/sys/i386/isa/isa.h index 24dc5cd..3c982d7 100644 --- a/sys/i386/isa/isa.h +++ b/sys/i386/isa/isa.h @@ -34,9 +34,12 @@ * SUCH DAMAGE. * * from: @(#)isa.h 5.7 (Berkeley) 5/9/91 - * $Id$ + * $Id: isa.h,v 1.2 1993/10/16 13:45:57 rgrimes Exp $ */ +#ifndef _I386_ISA_ISA_H_ +#define _I386_ISA_ISA_H_ 1 + /* * ISA Bus conventions */ @@ -178,3 +181,4 @@ int isa_irq_pending __P((struct isa_device *dvp)); #define WEITEK_FPU 0xC0000000 /* WTL 2167 */ #define CYRIX_EMC 0xC0000000 /* Cyrix EMC */ #endif COMPAQ_RAMRELOC +#endif /* _I386_ISA_ISA_H_ */ |