diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-03-23 18:43:19 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-03-23 18:43:19 +0000 |
commit | 830278dcd222180f3a4e6c5f288ea9f05afc52ae (patch) | |
tree | e707dbd955495fc6fca7fc8fa68e9c1d08e88c6c /os/common/ports/ARMCMx | |
parent | 4edc5aeca7251e69dfa772dfdd5b2e012375a809 (diff) | |
download | ChibiOS-830278dcd222180f3a4e6c5f288ea9f05afc52ae.tar.gz ChibiOS-830278dcd222180f3a4e6c5f288ea9f05afc52ae.tar.bz2 ChibiOS-830278dcd222180f3a4e6c5f288ea9f05afc52ae.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9153 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/ports/ARMCMx')
-rw-r--r-- | os/common/ports/ARMCMx/chcore.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/chcore_timer.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/chcore_v6m.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/chcore_v7m.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/compilers/GCC/chtypes.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/compilers/IAR/chtypes.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/compilers/RVCT/chtypes.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/mpu.h | 6 |
8 files changed, 24 insertions, 24 deletions
diff --git a/os/common/ports/ARMCMx/chcore.h b/os/common/ports/ARMCMx/chcore.h index 3b876cad0..0669824dd 100644 --- a/os/common/ports/ARMCMx/chcore.h +++ b/os/common/ports/ARMCMx/chcore.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHCORE_H_
-#define _CHCORE_H_
+#ifndef CHCORE_H
+#define CHCORE_H
/*===========================================================================*/
/* Module constants. */
@@ -210,6 +210,6 @@ struct port_context { #endif /* !defined(_FROM_ASM_) */
-#endif /* _CHCORE_H_ */
+#endif /* CHCORE_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/chcore_timer.h b/os/common/ports/ARMCMx/chcore_timer.h index eec7dcf79..32eca37b6 100644 --- a/os/common/ports/ARMCMx/chcore_timer.h +++ b/os/common/ports/ARMCMx/chcore_timer.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHCORE_TIMER_H_
-#define _CHCORE_TIMER_H_
+#ifndef CHCORE_TIMER_H
+#define CHCORE_TIMER_H
/* This is the only header in the HAL designed to be include-able alone.*/
#include "hal_st.h"
@@ -119,6 +119,6 @@ static inline systime_t port_timer_get_alarm(void) { return stGetAlarm();
}
-#endif /* _CHCORE_TIMER_H_ */
+#endif /* CHCORE_TIMER_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/chcore_v6m.h b/os/common/ports/ARMCMx/chcore_v6m.h index dbda15e61..0afeeabe9 100644 --- a/os/common/ports/ARMCMx/chcore_v6m.h +++ b/os/common/ports/ARMCMx/chcore_v6m.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHCORE_V6M_H_
-#define _CHCORE_V6M_H_
+#ifndef CHCORE_V6M_H
+#define CHCORE_V6M_H
/*===========================================================================*/
/* Module constants. */
@@ -435,6 +435,6 @@ static inline void port_wait_for_interrupt(void) { #endif /* _FROM_ASM_ */
-#endif /* _CHCORE_V6M_H_ */
+#endif /* CHCORE_V6M_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/chcore_v7m.h b/os/common/ports/ARMCMx/chcore_v7m.h index 5fc00820f..5dbbed8bd 100644 --- a/os/common/ports/ARMCMx/chcore_v7m.h +++ b/os/common/ports/ARMCMx/chcore_v7m.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHCORE_V7M_H_
-#define _CHCORE_V7M_H_
+#ifndef CHCORE_V7M_H
+#define CHCORE_V7M_H
/*===========================================================================*/
/* Module constants. */
@@ -693,6 +693,6 @@ static inline rtcnt_t port_rt_get_counter_value(void) { #endif /* !defined(_FROM_ASM_) */
-#endif /* _CHCORE_V7M_H_ */
+#endif /* CHCORE_V7M_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/compilers/GCC/chtypes.h b/os/common/ports/ARMCMx/compilers/GCC/chtypes.h index 5e27b8620..8c03899d7 100644 --- a/os/common/ports/ARMCMx/compilers/GCC/chtypes.h +++ b/os/common/ports/ARMCMx/compilers/GCC/chtypes.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHTYPES_H_
-#define _CHTYPES_H_
+#ifndef CHTYPES_H
+#define CHTYPES_H
#include <stddef.h>
#include <stdint.h>
@@ -98,6 +98,6 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */
#define ALIGNED_VAR(n) __attribute__((aligned(n)))
-#endif /* _CHTYPES_H_ */
+#endif /* CHTYPES_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/compilers/IAR/chtypes.h b/os/common/ports/ARMCMx/compilers/IAR/chtypes.h index 1bd58185f..152a64fe0 100644 --- a/os/common/ports/ARMCMx/compilers/IAR/chtypes.h +++ b/os/common/ports/ARMCMx/compilers/IAR/chtypes.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHTYPES_H_
-#define _CHTYPES_H_
+#ifndef CHTYPES_H
+#define CHTYPES_H
#include <stddef.h>
#include <stdint.h>
@@ -93,6 +93,6 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */
#define PACKED_VAR __packed
-#endif /* _CHTYPES_H_ */
+#endif /* CHTYPES_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h b/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h index abc559668..398472dfe 100644 --- a/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h +++ b/os/common/ports/ARMCMx/compilers/RVCT/chtypes.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHTYPES_H_
-#define _CHTYPES_H_
+#ifndef CHTYPES_H
+#define CHTYPES_H
#include <stddef.h>
#include <stdint.h>
@@ -93,6 +93,6 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */
#define PACKED_VAR __packed
-#endif /* _CHTYPES_H_ */
+#endif /* CHTYPES_H */
/** @} */
diff --git a/os/common/ports/ARMCMx/mpu.h b/os/common/ports/ARMCMx/mpu.h index 0f98e8a8a..6de5c5c50 100644 --- a/os/common/ports/ARMCMx/mpu.h +++ b/os/common/ports/ARMCMx/mpu.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _MPU_H_
-#define _MPU_H_
+#ifndef MPU_H
+#define MPU_H
/*===========================================================================*/
/* Driver constants. */
@@ -203,6 +203,6 @@ extern "C" { }
#endif
-#endif /* _MPU_H_ */
+#endif /* MPU_H */
/** @} */
|