Remove some dangling whitespace at the end of some lines.

This commit is contained in:
Gregory Nutt 2017-02-18 10:20:08 -06:00
parent 085616d651
commit 6bafdb1cdc
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@
/* Power control register 2 */
#define PWR_CR2_PVDE (1 << 0) /* Bit 0: Power voltage detector enable */
#define PWR_CR2_PLS_SHIFT 1
#define PWR_CR2_PLS_SHIFT 1
#define PWR_CR2_PLS_MASK (7 << PWR_CR2_PLS_SHIFT) /* Bits 1-3: Power voltage detector level selection */
# define PWR_CR2_PLS_2000mv (0 << PWR_CR2_PLS_SHIFT) /* 000: VPVD0 around 2.0V */
# define PWR_CR2_PLS_2200mv (1 << PWR_CR2_PLS_SHIFT) /* 001: VPVD1 around 2.2V */

View File

@ -74,7 +74,7 @@ int stm32l4_pmstandby(void)
#if defined(CONFIG_STM32L4_STM32L4X6) || defined(CONFIG_STM32L4_STM32L4X3)
/* Clear the Wake-Up Flags by setting the CWUFx bits in the power status
* clear register
* clear register
*/
regval = PWR_SCR_CWUF1 | PWR_SCR_CWUF2 | PWR_SCR_CWUF3 |
PWR_SCR_CWUF4 | PWR_SCR_CWUF5;