aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-09-04 08:53:47 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-09-04 08:53:47 +0000
commita04f856b572380ab72c6e392ef24183bf7a16c65 (patch)
tree800e540f5c3f09ea0c0e30fcff4722c0eab5b6aa /os/hal
parent7d99d4c8c07408d8e1d1f61044eb037148b235c2 (diff)
downloadChibiOS-a04f856b572380ab72c6e392ef24183bf7a16c65.tar.gz
ChibiOS-a04f856b572380ab72c6e392ef24183bf7a16c65.tar.bz2
ChibiOS-a04f856b572380ab72c6e392ef24183bf7a16c65.zip
Removed _ from guard macros for consistency with other files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10551 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/osal/nil/osal.h6
-rw-r--r--os/hal/osal/os-less/ARMCMx/osal.h6
-rw-r--r--os/hal/osal/os-less/AVR/osal.h6
-rw-r--r--os/hal/osal/rt/osal.h6
4 files changed, 12 insertions, 12 deletions
diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h
index 807b660c2..ac6879554 100644
--- a/os/hal/osal/nil/osal.h
+++ b/os/hal/osal/nil/osal.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _OSAL_H_
-#define _OSAL_H_
+#ifndef OSAL.H
+#define OSAL.H
#include <stddef.h>
#include <stdint.h>
@@ -947,6 +947,6 @@ static inline void osalMutexUnlock(mutex_t *mp) {
chSemSignal((semaphore_t *)mp);
}
-#endif /* _OSAL_H_ */
+#endif /* OSAL.H */
/** @} */
diff --git a/os/hal/osal/os-less/ARMCMx/osal.h b/os/hal/osal/os-less/ARMCMx/osal.h
index 9843cef97..5fcf8af64 100644
--- a/os/hal/osal/os-less/ARMCMx/osal.h
+++ b/os/hal/osal/os-less/ARMCMx/osal.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _OSAL_H_
-#define _OSAL_H_
+#ifndef OSAL.H
+#define OSAL.H
#include <stddef.h>
#include <stdint.h>
@@ -715,6 +715,6 @@ static inline void osalMutexObjectInit(mutex_t *mp) {
*mp = 0;
}
-#endif /* _OSAL_H_ */
+#endif /* OSAL.H */
/** @} */
diff --git a/os/hal/osal/os-less/AVR/osal.h b/os/hal/osal/os-less/AVR/osal.h
index eeb348050..390ac833e 100644
--- a/os/hal/osal/os-less/AVR/osal.h
+++ b/os/hal/osal/os-less/AVR/osal.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _OSAL_H_
-#define _OSAL_H_
+#ifndef OSAL.H
+#define OSAL.H
#include <stddef.h>
#include <stdint.h>
@@ -673,6 +673,6 @@ static inline void osalMutexObjectInit(mutex_t *mp) {
*mp = 0;
}
-#endif /* _OSAL_H_ */
+#endif /* OSAL.H */
/** @} */
diff --git a/os/hal/osal/rt/osal.h b/os/hal/osal/rt/osal.h
index e755a1c4f..397ff8acc 100644
--- a/os/hal/osal/rt/osal.h
+++ b/os/hal/osal/rt/osal.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _OSAL_H_
-#define _OSAL_H_
+#ifndef OSAL.H
+#define OSAL.H
#include <stddef.h>
#include <stdint.h>
@@ -936,6 +936,6 @@ static inline void osalMutexUnlock(mutex_t *mp) {
#endif
}
-#endif /* _OSAL_H_ */
+#endif /* OSAL.H */
/** @} */