1
0
Fork 0
forked from nuttx/nuttx-update

arch/stm32: Fix nxstyle errors

arch/arm/src/stm32/stm32_ltdc.h:
arch/arm/src/stm32/stm32_pmsleep.c:
arch/arm/src/stm32/stm32_pmstandby.c:

    * Fix nxstyle issues.
This commit is contained in:
Nathan Hartman 2020-12-17 18:50:12 -05:00 committed by Xiang Xiao
parent d42c5a0bf6
commit 4facd82ae0
3 changed files with 9 additions and 7 deletions

View file

@ -49,7 +49,7 @@
#include <nuttx/nx/nxglib.h>
/****************************************************************************
* Public Functions
* Public Function Prototypes
****************************************************************************/
/****************************************************************************
@ -62,7 +62,7 @@
void stm32_ltdcreset(void);
/*****************************************************************************
/****************************************************************************
* Name: stm32_ltdcinitialize
*
* Description:
@ -75,7 +75,7 @@ void stm32_ltdcreset(void);
int stm32_ltdcinitialize(void);
/*****************************************************************************
/****************************************************************************
* Name: stm32_ltdcuninitialize
*
* Description:
@ -85,7 +85,7 @@ int stm32_ltdcinitialize(void);
void stm32_ltdcuninitialize(void);
/*****************************************************************************
/****************************************************************************
* Name: stm32_ltdcgetvplane
*
* Description:

View file

@ -74,8 +74,8 @@
* sleeponexit - true: SLEEPONEXIT bit is set when the WFI instruction is
* executed, the MCU enters Sleep mode as soon as it
* exits the lowest priority ISR.
* - false: SLEEPONEXIT bit is cleared, the MCU enters Sleep mode
* as soon as WFI or WFE instruction is executed.
* - false: SLEEPONEXIT bit is cleared, the MCU enters Sleep
* mode as soon as WFI or WFE instruction is executed.
* Returned Value:
* None
*

View file

@ -91,7 +91,9 @@ int stm32_pmstandby(void)
regval |= PWR_CR_CWUF;
putreg32(regval, STM32_PWR_CR);
/* Set the Power Down Deep Sleep (PDDS) bit in the power control register. */
/* Set the Power Down Deep Sleep (PDDS) bit in the power control
* register.
*/
regval |= PWR_CR_PDDS;
putreg32(regval, STM32_PWR_CR);