diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-06 19:28:23 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-06 19:28:23 +0000 |
commit | b9e3a383b79171d2e356d470c4e9bee490aa3a8d (patch) | |
tree | 9ac165061fe7c44bb197771229561add1ecd4f5a /sys/arch/m88k/include | |
parent | cbfa7e060dab15c3479eb2ecf726dcd7ad9a2698 (diff) |
MVME88K -> M88K in include file guard symbols. No functional changes.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r-- | sys/arch/m88k/include/endian.h | 8 | ||||
-rw-r--r-- | sys/arch/m88k/include/intr.h | 4 | ||||
-rw-r--r-- | sys/arch/m88k/include/kcore.h | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/m88k/include/endian.h b/sys/arch/m88k/include/endian.h index 453becd222d..3e430e883e6 100644 --- a/sys/arch/m88k/include/endian.h +++ b/sys/arch/m88k/include/endian.h @@ -1,4 +1,4 @@ -/* $OpenBSD: endian.h,v 1.1 2004/04/26 12:34:05 miod Exp $ */ +/* $OpenBSD: endian.h,v 1.2 2005/09/06 19:28:22 miod Exp $ */ /*- * Copyright (c) 1997 Niklas Hallqvist. All rights reserved. @@ -24,13 +24,13 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __MVME88K_ENDIAN_H__ -#define __MVME88K_ENDIAN_H__ +#ifndef __M88K_ENDIAN_H__ +#define __M88K_ENDIAN_H__ #define BYTE_ORDER BIG_ENDIAN #include <sys/endian.h> #define __STRICT_ALIGNMENT -#endif /* __MVME88K_ENDIAN_H__ */ +#endif /* __M88K_ENDIAN_H__ */ diff --git a/sys/arch/m88k/include/intr.h b/sys/arch/m88k/include/intr.h index 7e84945af50..4c5895ef76e 100644 --- a/sys/arch/m88k/include/intr.h +++ b/sys/arch/m88k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.3 2005/05/01 09:55:49 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.4 2005/09/06 19:28:22 miod Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -70,4 +70,4 @@ void splassert_check(int, const char *); #define splx(x) ((x) ? setipl((x)) : spl0()) #endif /* _KERNEL */ -#endif /* _MVME88K_INTR_H_ */ +#endif /* _M88K_INTR_H_ */ diff --git a/sys/arch/m88k/include/kcore.h b/sys/arch/m88k/include/kcore.h index 2cd8f5f0b41..6a17605d3dc 100644 --- a/sys/arch/m88k/include/kcore.h +++ b/sys/arch/m88k/include/kcore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kcore.h,v 1.2 2004/09/30 21:46:35 miod Exp $ */ +/* $OpenBSD: kcore.h,v 1.3 2005/09/06 19:28:22 miod Exp $ */ /* * Copyright (c) 2001 Miodrag Vallat. @@ -25,8 +25,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _MVME88K_KCORE_H_ -#define _MVME88K_KCORE_H_ +#ifndef _M88K_KCORE_H_ +#define _M88K_KCORE_H_ /* Keep this define consistent with VM_PHYSSEG_MAX in <machine/vmparam.h> */ #define NPHYS_RAM_SEGS 1 @@ -36,4 +36,4 @@ typedef struct cpu_kcore_hdr { phys_ram_seg_t ram_segs[NPHYS_RAM_SEGS]; } cpu_kcore_hdr_t; -#endif /* _MVME88K_KCORE_H_ */ +#endif /* _M88K_KCORE_H_ */ |