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:
Felix Held 2023-12-20 22:48:49 +01:00 committed by Shelley Chen
parent aa8ae1a9b8
commit fe40af98a3
1 changed files with 2 additions and 1 deletions

View File

@ -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);