Shelley Chen has submitted this change. ( https://review.coreboot.org/c/coreboot/+/79673?usp=email )
Change subject: soc/amd/stoneyridge/BiosCallOuts: add missing curly braces ......................................................................
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 --- M src/soc/amd/stoneyridge/BiosCallOuts.c 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: Felix Singer: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/soc/amd/stoneyridge/BiosCallOuts.c b/src/soc/amd/stoneyridge/BiosCallOuts.c index b00f916a..1aebddb 100644 --- a/src/soc/amd/stoneyridge/BiosCallOuts.c +++ b/src/soc/amd/stoneyridge/BiosCallOuts.c @@ -65,8 +65,9 @@ FchParams_env->Sata.SataIdeMode = TRUE; break; } - } else + } else { FchParams_env->Sata.SataIdeMode = FALSE; + }
/* Platform updates */ platform_FchParams_env(FchParams_env);