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/ARM | |
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/ARM')
-rw-r--r-- | os/common/ports/ARM/chcore.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARM/chcore_timer.h | 6 | ||||
-rw-r--r-- | os/common/ports/ARM/compilers/GCC/chtypes.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/os/common/ports/ARM/chcore.h b/os/common/ports/ARM/chcore.h index da1ccf7a4..532fb0d11 100644 --- a/os/common/ports/ARM/chcore.h +++ b/os/common/ports/ARM/chcore.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHCORE_H_
-#define _CHCORE_H_
+#ifndef CHCORE_H
+#define CHCORE_H
/*===========================================================================*/
/* Module constants. */
@@ -559,6 +559,6 @@ static inline void port_wait_for_interrupt(void) { #endif /* !defined(_FROM_ASM_) */
-#endif /* _CHCORE_H_ */
+#endif /* CHCORE_H */
/** @} */
diff --git a/os/common/ports/ARM/chcore_timer.h b/os/common/ports/ARM/chcore_timer.h index 3da4bb01e..8a0d264ba 100644 --- a/os/common/ports/ARM/chcore_timer.h +++ b/os/common/ports/ARM/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/ARM/compilers/GCC/chtypes.h b/os/common/ports/ARM/compilers/GCC/chtypes.h index f4d13d133..c3290d8cc 100644 --- a/os/common/ports/ARM/compilers/GCC/chtypes.h +++ b/os/common/ports/ARM/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>
@@ -93,6 +93,6 @@ typedef uint32_t ucnt_t; /**< Generic unsigned counter. */ */
#define PACKED_VAR __attribute__((packed))
-#endif /* _CHTYPES_H_ */
+#endif /* CHTYPES_H */
/** @} */
|