forked from Imagelibrary/rtems
arm/.../stm32h757i-eval/system_stm32h7xx.c: Fix misleading indentation
GCC warned that the incorrectly indented line could be misinterpreted as needing to belong to the previous for loop which does not have braces.
This commit is contained in:
committed by
Kinsey Moore
parent
9f5913e132
commit
a350345e29
@@ -729,7 +729,12 @@ void SystemInit_ExtMemCtl(void)
|
||||
for (index = 0; index<1000; index++);
|
||||
|
||||
/* PALL command */
|
||||
#ifdef __rtems__
|
||||
/* fix misleading indentation */
|
||||
FMC_Bank5_6_R->SDCMR = 0x0000000A;
|
||||
#else
|
||||
FMC_Bank5_6_R->SDCMR = 0x0000000A;
|
||||
#endif
|
||||
timeout = 0xFFFF;
|
||||
while((tmpreg != 0) && (timeout-- > 0))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user