soc/amd/stoneyridge/BiosCallOuts: add missing curly braces
When an if block has curly braces, the corresponding else block should also have curly braces. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ie1979873142469b1482097f9b4db487541a1b7a5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/79673 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
This commit is contained in:
parent
aa8ae1a9b8
commit
fe40af98a3
|
@ -65,8 +65,9 @@ AGESA_STATUS agesa_fch_initenv(uint32_t Func, uintptr_t FchData,
|
||||||
FchParams_env->Sata.SataIdeMode = TRUE;
|
FchParams_env->Sata.SataIdeMode = TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
FchParams_env->Sata.SataIdeMode = FALSE;
|
FchParams_env->Sata.SataIdeMode = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/* Platform updates */
|
/* Platform updates */
|
||||||
platform_FchParams_env(FchParams_env);
|
platform_FchParams_env(FchParams_env);
|
||||||
|
|
Loading…
Reference in New Issue