diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 09:11:34 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 09:11:34 +0000 |
commit | 98e88598b1bb49d59cf20086f028e0799ead9595 (patch) | |
tree | e3c4097ea6fa675e1afc84c191875479b7b7ae02 /os/hal/ports/simulator | |
parent | 20eb1fa15dcee331d9e45ab54aee8d09a5f5e925 (diff) | |
download | ChibiOS-98e88598b1bb49d59cf20086f028e0799ead9595.tar.gz ChibiOS-98e88598b1bb49d59cf20086f028e0799ead9595.tar.bz2 ChibiOS-98e88598b1bb49d59cf20086f028e0799ead9595.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9215 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/simulator')
-rw-r--r-- | os/hal/ports/simulator/console.h | 6 | ||||
-rw-r--r-- | os/hal/ports/simulator/pal_lld.h | 6 | ||||
-rw-r--r-- | os/hal/ports/simulator/st_lld.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/os/hal/ports/simulator/console.h b/os/hal/ports/simulator/console.h index ec74cb45b..8b7d0f1ba 100644 --- a/os/hal/ports/simulator/console.h +++ b/os/hal/ports/simulator/console.h @@ -20,8 +20,8 @@ * @{
*/
-#ifndef _CONSOLE_H_
-#define _CONSOLE_H_
+#ifndef CONSOLE_H
+#define CONSOLE_H
/*===========================================================================*/
/* Driver constants. */
@@ -57,6 +57,6 @@ extern "C" { }
#endif
-#endif /* _CONSOLE_H_ */
+#endif /* CONSOLE_H */
/** @} */
diff --git a/os/hal/ports/simulator/pal_lld.h b/os/hal/ports/simulator/pal_lld.h index bf0b245d1..2cd288ec2 100644 --- a/os/hal/ports/simulator/pal_lld.h +++ b/os/hal/ports/simulator/pal_lld.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _PAL_LLD_H_
-#define _PAL_LLD_H_
+#ifndef PAL_LLD_H
+#define PAL_LLD_H
#if HAL_USE_PAL || defined(__DOXYGEN__)
@@ -201,6 +201,6 @@ extern "C" { #endif /* HAL_USE_PAL */
-#endif /* _PAL_LLD_H_ */
+#endif /* PAL_LLD_H */
/** @} */
diff --git a/os/hal/ports/simulator/st_lld.h b/os/hal/ports/simulator/st_lld.h index 34b362be4..c50109f11 100644 --- a/os/hal/ports/simulator/st_lld.h +++ b/os/hal/ports/simulator/st_lld.h @@ -24,8 +24,8 @@ * @{
*/
-#ifndef _ST_LLD_H_
-#define _ST_LLD_H_
+#ifndef ST_LLD_H
+#define ST_LLD_H
/*===========================================================================*/
/* Driver constants. */
@@ -136,6 +136,6 @@ static inline bool st_lld_is_alarm_active(void) { return false;
}
-#endif /* _ST_LLD_H_ */
+#endif /* ST_LLD_H */
/** @} */
|