diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-09-04 12:50:04 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-09-04 12:50:04 +0000 |
commit | d6a1ed6d7375ab89a37708d388311b26fe27b1d4 (patch) | |
tree | 7137725f53ff667094e594230b46def4bb387380 /os | |
parent | a04f856b572380ab72c6e392ef24183bf7a16c65 (diff) | |
download | ChibiOS-d6a1ed6d7375ab89a37708d388311b26fe27b1d4.tar.gz ChibiOS-d6a1ed6d7375ab89a37708d388311b26fe27b1d4.tar.bz2 ChibiOS-d6a1ed6d7375ab89a37708d388311b26fe27b1d4.zip |
Fixed OSAL.H macro...
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10552 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/osal/nil/osal.h | 6 | ||||
-rw-r--r-- | os/hal/osal/os-less/ARMCMx/osal.h | 6 | ||||
-rw-r--r-- | os/hal/osal/os-less/AVR/osal.h | 6 | ||||
-rw-r--r-- | os/hal/osal/rt/osal.h | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h index ac6879554..5f3ff1bc5 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 5fcf8af64..d38035325 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 390ac833e..d23134e04 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 397ff8acc..c99b4c92a 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 */
/** @} */
|