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
This commit is contained in:
Giovanni Di Sirio 2017-09-04 08:53:47 +00:00
parent 7d99d4c8c0
commit a04f856b57
4 changed files with 12 additions and 12 deletions

View File

@ -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 */
/** @} */

View File

@ -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 */
/** @} */

View File

@ -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 */
/** @} */

View File

@ -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 */
/** @} */