diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2016-08-11 20:32:30 +0200 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2016-08-11 20:32:30 +0200 |
commit | 58569cc6f569dadee22c4d6e813363f7cc51d56f (patch) | |
tree | fab567044306204ec6f10f0ee04707a712fc0c39 /os/common | |
parent | b153796a5dd6aff59e8f22c50f6017d175c76e0a (diff) | |
download | ChibiOS-Contrib-58569cc6f569dadee22c4d6e813363f7cc51d56f.tar.gz ChibiOS-Contrib-58569cc6f569dadee22c4d6e813363f7cc51d56f.tar.bz2 ChibiOS-Contrib-58569cc6f569dadee22c4d6e813363f7cc51d56f.zip |
Removed leading and trailing underscores from include guards.
Diffstat (limited to 'os/common')
-rw-r--r-- | os/common/startup/ARMCMx/devices/TM4C123x/cmparams.h | 6 | ||||
-rw-r--r-- | os/common/startup/ARMCMx/devices/TM4C129x/cmparams.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/os/common/startup/ARMCMx/devices/TM4C123x/cmparams.h b/os/common/startup/ARMCMx/devices/TM4C123x/cmparams.h index 933e111..fbd0ff3 100644 --- a/os/common/startup/ARMCMx/devices/TM4C123x/cmparams.h +++ b/os/common/startup/ARMCMx/devices/TM4C123x/cmparams.h @@ -20,8 +20,8 @@ * @{ */ -#ifndef _CMPARAMS_H_ -#define _CMPARAMS_H_ +#ifndef CMPARAMS_H +#define CMPARAMS_H /** * @brief Cortex core model. @@ -105,7 +105,7 @@ #endif /* !defined(_FROM_ASM_) */ -#endif /* _CMPARAMS_H_ */ +#endif /* CMPARAMS_H */ /** * @} diff --git a/os/common/startup/ARMCMx/devices/TM4C129x/cmparams.h b/os/common/startup/ARMCMx/devices/TM4C129x/cmparams.h index 1d2661d..669a446 100644 --- a/os/common/startup/ARMCMx/devices/TM4C129x/cmparams.h +++ b/os/common/startup/ARMCMx/devices/TM4C129x/cmparams.h @@ -20,8 +20,8 @@ * @{ */ -#ifndef _CMPARAMS_H_ -#define _CMPARAMS_H_ +#ifndef CMPARAMS_H +#define CMPARAMS_H /** * @brief Cortex core model. @@ -89,7 +89,7 @@ #endif /* !defined(_FROM_ASM_) */ -#endif /* _CMPARAMS_H_ */ +#endif /* CMPARAMS_H */ /** * @} |