diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 09:03:53 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 09:03:53 +0000 |
commit | 7e5818b4492e831cdb1d1c2c5ff5c8a72b090e99 (patch) | |
tree | 99f92a8faa611e6e185ddbe0378c6b38ab3c5652 /os/hal/ports/STM32/STM32F3xx | |
parent | 6443cb37d899f517ab165e56b450bb137e5e7ee1 (diff) | |
download | ChibiOS-7e5818b4492e831cdb1d1c2c5ff5c8a72b090e99.tar.gz ChibiOS-7e5818b4492e831cdb1d1c2c5ff5c8a72b090e99.tar.bz2 ChibiOS-7e5818b4492e831cdb1d1c2c5ff5c8a72b090e99.zip |
Updated header guards for LLD files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9211 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/STM32F3xx')
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/hal_ext_lld_isr.h | 6 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/hal_lld.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/ports/STM32/STM32F3xx/hal_ext_lld_isr.h b/os/hal/ports/STM32/STM32F3xx/hal_ext_lld_isr.h index d667f9c30..f80a8828e 100644 --- a/os/hal/ports/STM32/STM32F3xx/hal_ext_lld_isr.h +++ b/os/hal/ports/STM32/STM32F3xx/hal_ext_lld_isr.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _EXT_LLD_ISR_H_
-#define _EXT_LLD_ISR_H_
+#ifndef HAL_EXT_LLD_ISR_H
+#define HAL_EXT_LLD_ISR_H
#if HAL_USE_EXT || defined(__DOXYGEN__)
@@ -172,6 +172,6 @@ extern "C" { #endif /* HAL_USE_EXT */
-#endif /* _EXT_LLD_ISR_H_ */
+#endif /* HAL_EXT_LLD_ISR_H */
/** @} */
diff --git a/os/hal/ports/STM32/STM32F3xx/hal_lld.h b/os/hal/ports/STM32/STM32F3xx/hal_lld.h index dfb382521..c076e4050 100644 --- a/os/hal/ports/STM32/STM32F3xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32F3xx/hal_lld.h @@ -44,8 +44,8 @@ * @{
*/
-#ifndef _HAL_LLD_H_
-#define _HAL_LLD_H_
+#ifndef HAL_HAL_LLD_H
+#define HAL_HAL_LLD_H
#include "stm32_registry.h"
@@ -1157,6 +1157,6 @@ extern "C" { }
#endif
-#endif /* _HAL_LLD_H_ */
+#endif /* HAL_HAL_LLD_H */
/** @} */
|