From 2cfbfa8213bb70fe46dee3977b18315c7500ff0b Mon Sep 17 00:00:00 2001 From: Nathan Hartman <59230071+hartmannathan@users.noreply.github.com> Date: Wed, 6 Jan 2021 17:22:40 -0500 Subject: [PATCH] arch/stm32h7: Fix nxstyle errors arch/arm/src/stm32h7/stm32_pwr.c: * Fix nxstyle issues. --- arch/arm/src/stm32h7/stm32_pwr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/stm32h7/stm32_pwr.c b/arch/arm/src/stm32h7/stm32_pwr.c index ca497b2b160..84ade125fd0 100644 --- a/arch/arm/src/stm32h7/stm32_pwr.c +++ b/arch/arm/src/stm32h7/stm32_pwr.c @@ -369,7 +369,7 @@ void stm32_pwr_configurewkup(uint32_t pin, bool en, bool rising, uint32_t pull) 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));