diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-03-23 16:54:38 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-03-23 16:54:38 +0000 |
commit | 96b354137b8039e6c2ebd6f88c0008ecb2e4f20d (patch) | |
tree | b34cf5e18c5986eb1ce733aad820bd3ce42c6b46 /sys/arch/loongson | |
parent | d81ed92368684fcbb0e5ea3bcf868e6252a6ddda (diff) |
Normalize sentinel. Use _MACHINE_*_H_ and _<ARCH>_*_H_ properly and consitently.
Discussed and okay drahn@. Okay deraadt@.
Diffstat (limited to 'sys/arch/loongson')
-rw-r--r-- | sys/arch/loongson/include/apmvar.h | 8 | ||||
-rw-r--r-- | sys/arch/loongson/include/vmparam.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/loongson/include/apmvar.h b/sys/arch/loongson/include/apmvar.h index 7311616b411..0930f0340b9 100644 --- a/sys/arch/loongson/include/apmvar.h +++ b/sys/arch/loongson/include/apmvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: apmvar.h,v 1.1 2010/02/28 08:30:27 otto Exp $ */ +/* $OpenBSD: apmvar.h,v 1.2 2011/03/23 16:54:35 pirofti Exp $ */ /* * Copyright (c) 2001 Alexander Guy @@ -29,8 +29,8 @@ * POSSIBILITY OF SUCH DAMAGE. * */ -#ifndef _LOONGSON_APMVAR_H_ -#define _LOONGSON_APMVAR_H_ +#ifndef _MACHINE_APMVAR_H_ +#define _MACHINE_APMVAR_H_ #include <sys/ioccom.h> @@ -122,4 +122,4 @@ void apm_setinfohook(int (*)(struct apm_power_info *)); int apm_record_event(u_int, const char *, const char *); #endif -#endif /* _LOONGSON_APMVAR_H_ */ +#endif /* _MACHINE_APMVAR_H_ */ diff --git a/sys/arch/loongson/include/vmparam.h b/sys/arch/loongson/include/vmparam.h index 0b6cb11698e..b7bee8c3ed2 100644 --- a/sys/arch/loongson/include/vmparam.h +++ b/sys/arch/loongson/include/vmparam.h @@ -1,11 +1,11 @@ -/* $OpenBSD: vmparam.h,v 1.2 2010/11/28 20:28:26 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.3 2011/03/23 16:54:35 pirofti Exp $ */ /* public domain */ -#ifndef _LOONGSON_VMPARAM_H_ -#define _LOONGSON_VMPARAM_H_ +#ifndef _MACHINE_VMPARAM_H_ +#define _MACHINE_VMPARAM_H_ #define VM_PHYSSEG_MAX 2 /* Max number of physical memory segments */ #define VM_PHYSSEG_STRAT VM_PSTRAT_BIGFIRST #include <mips64/vmparam.h> -#endif /* _LOONGSON_VMPARAM_H_ */ +#endif /* _MACHINE_VMPARAM_H_ */ |