From c54adf248a1c2881af72978cc40dd76647b14022 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 16 Apr 2015 16:35:06 -0600 Subject: [PATCH] STM32 - cosmetic changes to indentation --- arch/arm/src/stm32/stm32_lse.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/arm/src/stm32/stm32_lse.c b/arch/arm/src/stm32/stm32_lse.c index 3ee6f3a507..1b63e68bba 100644 --- a/arch/arm/src/stm32/stm32_lse.c +++ b/arch/arm/src/stm32/stm32_lse.c @@ -72,7 +72,6 @@ * ****************************************************************************/ - void stm32_rcc_enablelse(void) { /* The LSE is in the RTC domain and write access is denied to this domain @@ -80,7 +79,7 @@ void stm32_rcc_enablelse(void) * register before to configuring the LSE. */ - stm32_pwr_enablebkp(true); + stm32_pwr_enablebkp(true); #if defined(CONFIG_STM32_STM32L15XX) /* Enable the External Low-Speed (LSE) oscillator by setting the LSEON bit @@ -112,6 +111,5 @@ void stm32_rcc_enablelse(void) #endif - stm32_pwr_enablebkp(false); - + stm32_pwr_enablebkp(false); }