diff options
-rw-r--r-- | os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.c | 5 | ||||
-rw-r--r-- | os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.h | 10 |
2 files changed, 7 insertions, 8 deletions
diff --git a/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.c b/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.c index 18f180199..31bd13b14 100644 --- a/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.c +++ b/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.c @@ -15,8 +15,8 @@ */
/**
- * @file AVR/hal_ext_lld.c
- * @brief AVR EXT subsystem low level driver source.
+ * @file EXTv1/hal_ext_lld.c
+ * @brief AVR/MEGA EXT subsystem low level driver source.
*
* @addtogroup EXT
* @{
@@ -374,4 +374,3 @@ void ext_lld_stop(EXTDriver *extp) { #endif /* HAL_USE_EXT */
/** @} */
-
diff --git a/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.h b/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.h index 6707f9cda..2d14150e3 100644 --- a/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.h +++ b/os/hal/ports/AVR/MEGA/LLD/EXTv1/hal_ext_lld.h @@ -15,15 +15,15 @@ */
/**
- * @file AVR/hal_ext_lld.h
- * @brief EXT Driver subsystem low level driver source.
+ * @file EXTv1/hal_ext_lld.h
+ * @brief AVR/MEGA EXT subsystem low level driver header.
*
* @addtogroup EXT
* @{
*/
-#ifndef _HAL_EXT_LLD_H_
-#define _HAL_EXT_LLD_H_
+#ifndef HAL_EXT_LLD_H
+#define HAL_EXT_LLD_H
#if HAL_USE_EXT || defined(__DOXYGEN__)
@@ -131,5 +131,5 @@ extern "C" { #endif /* HAL_USE_EXT */
-#endif /* _HAL_EXT_LLD_H_ */
+#endif /* HAL_EXT_LLD_H */
|