arch/stm32h7: Fix nxstyle errors

arch/arm/src/stm32h7/stm32_pwr.c:

    * Fix nxstyle issues.
This commit is contained in:
Nathan Hartman 2021-01-06 17:22:40 -05:00 committed by Abdelatif Guettouche
parent f30097d0ab
commit 2cfbfa8213

View File

@ -369,7 +369,7 @@ void stm32_pwr_configurewkup(uint32_t pin, bool en, bool rising, uint32_t pull)
regval |= STM32_PWR_WKUPP(pin); regval |= STM32_PWR_WKUPP(pin);
} }
/* Set to the no pull-up state by default*/ /* Set to the no pull-up state by default */
regval &= ~ (STM32_PWR_WKUPPUPD_MASK << STM32_PWR_WKUPPUPD_SHIFT(pin)); regval &= ~ (STM32_PWR_WKUPPUPD_MASK << STM32_PWR_WKUPPUPD_SHIFT(pin));