From 8f337e8aa4ce0eee00c75b15102b81e09e1b2b6e Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Fri, 22 Mar 2024 09:57:10 +0100 Subject: [PATCH] fix(mp1): trailing space Signed-off-by: Frederic Pillon --- system/STM32MP1xx/system_stm32mp1xx.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/system/STM32MP1xx/system_stm32mp1xx.c b/system/STM32MP1xx/system_stm32mp1xx.c index d2750fbb38..6269868f5b 100644 --- a/system/STM32MP1xx/system_stm32mp1xx.c +++ b/system/STM32MP1xx/system_stm32mp1xx.c @@ -14,7 +14,7 @@ * be used by the user application to setup * the SysTick timer or configure other * parameters. - * + * * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must * be called whenever the core clock is changed * during program execution. @@ -111,8 +111,8 @@ * @{ */ -#if defined (DATA_IN_ExtSRAM) - static void SystemInit_ExtMemCtl(void); +#if defined (DATA_IN_ExtSRAM) + static void SystemInit_ExtMemCtl(void); #endif /* DATA_IN_ExtSRAM */ /** @@ -125,7 +125,7 @@ /** * @brief Setup the microcontroller system - * Initialize the FPU setting, vector table location and External memory + * Initialize the FPU setting, vector table location and External memory * configuration. * @param None * @retval None @@ -151,7 +151,7 @@ void SystemInit (void) CLEAR_REG(EXTI_C2->EMR3); #else #error Please #define CORE_CM4 -#endif +#endif } /** @@ -165,7 +165,7 @@ void SystemInit (void) * based on this variable will be incorrect. * * @note - The system frequency computed by this function is not the real - * frequency in the chip. It is calculated based on the predefined + * frequency in the chip. It is calculated based on the predefined * constant and the selected clock source: * * - If SYSCLK source is HSI, SystemCoreClock will contain the @@ -271,10 +271,10 @@ void SystemCoreClockUpdate (void) */ void SystemInit_ExtMemCtl(void) { - + } #endif /* DATA_IN_ExtSRAM */ - + /** * @} */