arch/stm32: Fix nxstyle errors

arch/arm/src/stm32/stm32_oneshot.c:
arch/arm/src/stm32/stm32_oneshot.h:
arch/arm/src/stm32/stm32_oneshot_lowerhalf.c:
arch/arm/src/stm32/stm32_dbgmcu.h:

    * Fix nxstyle errors.

arch/arm/src/stm32/stm32_lsi.c:

    * Fix nxstyle errors.
    * Also a minor grammar fix in a comment: add "in" to "setting the
      LSION bit in the RCC CSR register."
This commit is contained in:
Nathan Hartman
2020-11-24 19:32:53 -05:00
committed by Xiang Xiao
parent 324d3a89ed
commit 4e460cd440
5 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -58,7 +58,7 @@
************************************************************************************/
/************************************************************************************
* Public Functions
* Public Function Prototypes
************************************************************************************/
#endif /* __ARCH_ARM_SRC_STM32_STM32_DBGMCU_H */
+4 -4
View File
@@ -69,8 +69,8 @@
void stm32_rcc_enablelsi(void)
{
/* Enable the Internal Low-Speed (LSI) RC Oscillator by setting the LSION bit
* the RCC CSR register.
/* Enable the Internal Low-Speed (LSI) RC Oscillator by setting the LSION
* bit in the RCC CSR register.
*/
modifyreg32(STM32_RCC_CSR, 0, RCC_CSR_LSION);
@@ -90,8 +90,8 @@ void stm32_rcc_enablelsi(void)
void stm32_rcc_disablelsi(void)
{
/* Enable the Internal Low-Speed (LSI) RC Oscillator by setting the LSION bit
* the RCC CSR register.
/* Enable the Internal Low-Speed (LSI) RC Oscillator by setting the LSION
* bit in the RCC CSR register.
*/
modifyreg32(STM32_RCC_CSR, RCC_CSR_LSION, 0);
+2 -1
View File
@@ -275,7 +275,8 @@ int stm32_oneshot_start(struct stm32_oneshot_s *oneshot,
irqstate_t flags;
tmrinfo("handler=%p arg=%p, ts=(%lu, %lu)\n",
handler, arg, (unsigned long)ts->tv_sec, (unsigned long)ts->tv_nsec);
handler, arg, (unsigned long)ts->tv_sec,
(unsigned long)ts->tv_nsec);
DEBUGASSERT(oneshot && handler && ts);
DEBUGASSERT(oneshot->tch);
+3 -3
View File
@@ -80,9 +80,9 @@
typedef void (*oneshot_handler_t)(void *arg);
/* The oneshot client must allocate an instance of this structure and called
* stm32_oneshot_initialize() before using the oneshot facilities. The client
* should not access the contents of this structure directly since the
* contents are subject to change.
* stm32_oneshot_initialize() before using the oneshot facilities. The
* client should not access the contents of this structure directly since
* the contents are subject to change.
*/
struct stm32_oneshot_s
+2 -1
View File
@@ -54,7 +54,8 @@
* Private Types
****************************************************************************/
/* This structure describes the state of the oneshot timer lower-half driver */
/* This structure describes the state of the oneshot timer lower-half driver
*/
struct stm32_oneshot_lowerhalf_s
{