From a60fa5b8d3ead4082d148d9f1faee815899368a2 Mon Sep 17 00:00:00 2001 From: zhuoshuguo Date: Wed, 16 Nov 2016 11:45:03 +0100 Subject: [PATCH] cpu/cortexm_common: fix include guards. --- cpu/cortexm_common/include/core_cmFunc.h | 6 +++--- cpu/cortexm_common/include/core_cmInstr.h | 6 +++--- cpu/cortexm_common/include/core_cmSimd.h | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cpu/cortexm_common/include/core_cmFunc.h b/cpu/cortexm_common/include/core_cmFunc.h index c8bcd1c80c..fb202050cc 100644 --- a/cpu/cortexm_common/include/core_cmFunc.h +++ b/cpu/cortexm_common/include/core_cmFunc.h @@ -38,8 +38,8 @@ #pragma clang system_header /* treat file as system include file */ #endif -#ifndef __CORE_CMFUNC_H -#define __CORE_CMFUNC_H +#ifndef CORE_CMFUNC_H +#define CORE_CMFUNC_H #ifdef __cplusplus extern "C" { @@ -91,4 +91,4 @@ } #endif -#endif /* __CORE_CMFUNC_H */ +#endif /* CORE_CMFUNC_H */ diff --git a/cpu/cortexm_common/include/core_cmInstr.h b/cpu/cortexm_common/include/core_cmInstr.h index 20d24c5093..856fef35f7 100644 --- a/cpu/cortexm_common/include/core_cmInstr.h +++ b/cpu/cortexm_common/include/core_cmInstr.h @@ -38,8 +38,8 @@ #pragma clang system_header /* treat file as system include file */ #endif -#ifndef __CORE_CMINSTR_H -#define __CORE_CMINSTR_H +#ifndef CORE_CMINSTR_H +#define CORE_CMINSTR_H #ifdef __cplusplus extern "C" { @@ -91,4 +91,4 @@ } #endif -#endif /* __CORE_CMINSTR_H */ +#endif /* CORE_CMINSTR_H */ diff --git a/cpu/cortexm_common/include/core_cmSimd.h b/cpu/cortexm_common/include/core_cmSimd.h index 66bf5c2a72..320c3324dc 100644 --- a/cpu/cortexm_common/include/core_cmSimd.h +++ b/cpu/cortexm_common/include/core_cmSimd.h @@ -38,8 +38,8 @@ #pragma clang system_header /* treat file as system include file */ #endif -#ifndef __CORE_CMSIMD_H -#define __CORE_CMSIMD_H +#ifndef CORE_CMSIMD_H +#define CORE_CMSIMD_H #ifdef __cplusplus extern "C" { @@ -93,4 +93,4 @@ } #endif -#endif /* __CORE_CMSIMD_H */ +#endif /* CORE_CMSIMD_H */