diff options
author | Eugene Myers <edmyers@tycho.nsa.gov> | 2020-02-10 17:46:49 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-02-17 15:35:07 +0000 |
commit | 47607bdc83558f63b917b4de2e35741fe5366469 (patch) | |
tree | 2b996ad39969d050d8d58148903431a95f8295d6 | |
parent | 53e92360f5b08866856eb50a3d9adae070d4df7b (diff) |
cpu/x86/smm: Remove blank line in code
Remove blank line to maintain the relation between the previous comment and
the remainder of the block.
Signed-off-by: Eugene D. Myers <edmyers@tycho.nsa.gov>
Change-Id: Ib9754c6723ecd5e4895898490fc7228e1c3839d0
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38821
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/cpu/x86/smm/smm_module_loader.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpu/x86/smm/smm_module_loader.c b/src/cpu/x86/smm/smm_module_loader.c index 81020a460a..66a40c4233 100644 --- a/src/cpu/x86/smm/smm_module_loader.c +++ b/src/cpu/x86/smm/smm_module_loader.c @@ -396,7 +396,6 @@ int smm_load_module(void *smram, size_t size, struct smm_loader_params *params) /* 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 if (CONFIG(STM)) total_size += CONFIG_BIOS_RESOURCE_LIST_SIZE; |