diff options
author | Theodore Ateba <tf.ateba@gmail.com> | 2017-09-02 14:16:22 +0000 |
---|---|---|
committer | Theodore Ateba <tf.ateba@gmail.com> | 2017-09-02 14:16:22 +0000 |
commit | 295159f903787a3332f5a6dd374a5e1bcda02f7e (patch) | |
tree | 4b64382d5714625e4df181e828e68c0d98672e9a | |
parent | 721f89631c5cc5f221f57e6f61c90379cedcefbb (diff) | |
download | ChibiOS-295159f903787a3332f5a6dd374a5e1bcda02f7e.tar.gz ChibiOS-295159f903787a3332f5a6dd374a5e1bcda02f7e.tar.bz2 ChibiOS-295159f903787a3332f5a6dd374a5e1bcda02f7e.zip |
Correct code style and comment on ST driver files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10539 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.c | 5 | ||||
-rw-r--r-- | os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.h | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.c b/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.c index b862dc50a..1135768e4 100644 --- a/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.c +++ b/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.c @@ -15,8 +15,8 @@ */
/**
- * @file hal_st_lld.c
- * @brief AVR ST subsystem low level driver source.
+ * @file TIMv1/hal_st_lld.c
+ * @brief AVR/MEGA ST subsystem low level driver source.
*
* @addtogroup ST
* @{
@@ -239,7 +239,6 @@ void st_lld_init(void) { #endif
#endif /* OSAL_ST_MODE == OSAL_ST_MODE_PERIODIC */
-
}
#endif /* OSAL_ST_MODE != OSAL_ST_MODE_NONE */
diff --git a/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.h b/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.h index 470980261..5e526a81f 100644 --- a/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.h +++ b/os/hal/ports/AVR/MEGA/LLD/TIMv1/hal_st_lld.h @@ -15,8 +15,8 @@ */
/**
- * @file hal_st_lld.h
- * @brief ST Driver subsystem low level driver header.
+ * @file TIMv1/hal_st_lld.h
+ * @brief AVR/MEGA ST subsystem low level driver header.
* @details This header is designed to be include-able without having to
* include other files from the HAL.
*
|