Skip to content

Commit

Permalink
fix(mp1): trailing space
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Pillon <[email protected]>
  • Loading branch information
fpistm committed Mar 22, 2024
1 parent 9806c00 commit 8f337e8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions system/STM32MP1xx/system_stm32mp1xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 */

/**
Expand All @@ -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
Expand All @@ -151,7 +151,7 @@ void SystemInit (void)
CLEAR_REG(EXTI_C2->EMR3);
#else
#error Please #define CORE_CM4
#endif
#endif
}

/**
Expand All @@ -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
Expand Down Expand Up @@ -271,10 +271,10 @@ void SystemCoreClockUpdate (void)
*/
void SystemInit_ExtMemCtl(void)
{

}
#endif /* DATA_IN_ExtSRAM */

/**
* @}
*/
Expand Down

0 comments on commit 8f337e8

Please sign in to comment.