summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-16 16:35:06 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-16 16:35:06 -0600
commit62c2a294fd438e606330d96d6e5bfabb03bcd2da (patch)
treeb2a24491341243bfc4300fe509c53843c171e417 /nuttx
parent00e54905970969e28a8b69b6e74a1e40ea5eab2c (diff)
downloadpx4-nuttx-62c2a294fd438e606330d96d6e5bfabb03bcd2da.tar.gz
px4-nuttx-62c2a294fd438e606330d96d6e5bfabb03bcd2da.tar.bz2
px4-nuttx-62c2a294fd438e606330d96d6e5bfabb03bcd2da.zip
STM32 - cosmetic changes to indentation
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/arch/arm/src/stm32/stm32_lse.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/nuttx/arch/arm/src/stm32/stm32_lse.c b/nuttx/arch/arm/src/stm32/stm32_lse.c
index 3ee6f3a50..1b63e68bb 100644
--- a/nuttx/arch/arm/src/stm32/stm32_lse.c
+++ b/nuttx/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);
}