cedarhouse1@comcast.net has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38854 )
Change subject: cpu/x86/smm: Make BIOS all upper case ......................................................................
cpu/x86/smm: Make BIOS all upper case
In an CL:38821 a reviewer noted that BIOS is upper case. This patch fixes that.
Signed-off-by: Eugene D. Myers edmyers@tycho.nsa.gov Change-Id: I85d78b5e08a7643c3d87e3daf353d6b3ba8d306b --- M src/cpu/x86/smm/smm_module_loader.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/54/38854/1
diff --git a/src/cpu/x86/smm/smm_module_loader.c b/src/cpu/x86/smm/smm_module_loader.c index 66a40c4..856ca78 100644 --- a/src/cpu/x86/smm/smm_module_loader.c +++ b/src/cpu/x86/smm/smm_module_loader.c @@ -396,7 +396,7 @@ /* Does the required amount of memory exceed the SMRAM region size? */ total_size = total_stack_size + handler_size; total_size += fxsave_size + SMM_DEFAULT_SIZE; - // account for the bios resource list + /* Account for the BIOS resource list */ if (CONFIG(STM)) total_size += CONFIG_BIOS_RESOURCE_LIST_SIZE;