STM32 - cosmetic changes to indentation

This commit is contained in:
Gregory Nutt 2015-04-16 16:35:06 -06:00
parent 5f7f2b6461
commit 383f6c52dd

View File

@ -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);
}