diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-04-07 21:54:37 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@tutanota.com> | 2022-06-03 15:23:51 +0000 |
commit | 68d765b7325580d164fa32039913fcbe5e3e5c1d (patch) | |
tree | f7533870eef874ad5d4eab41fe7ba927d1fc9a6c /src/cpu/x86 | |
parent | 322aa801d2a95fd5cb2d7f2fc7b871c91ef180a9 (diff) |
cpu/x86/smm_module_loader: Update logging
Some logging is superfluous and logging that code is being copied is
'SPEW' level.
Change-Id: I84d49a394cc53d78f1e1d3936502ac16810daf9f
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63481
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/cpu/x86')
-rw-r--r-- | src/cpu/x86/smm/smm_module_loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/smm/smm_module_loader.c b/src/cpu/x86/smm/smm_module_loader.c index 50e8358cdb..55205c9e6a 100644 --- a/src/cpu/x86/smm/smm_module_loader.c +++ b/src/cpu/x86/smm/smm_module_loader.c @@ -185,7 +185,7 @@ static void smm_place_entry_code(const unsigned int num_cpus) printk(BIOS_DEBUG, "SMM Module: placing smm entry code at %lx, cpu # 0x%x\n", cpus[i].code_start, i); - printk(BIOS_DEBUG, "%s: copying from %lx to %lx 0x%x bytes\n", + printk(BIOS_SPEW, "%s: copying from %lx to %lx 0x%x bytes\n", __func__, cpus[0].code_start, cpus[i].code_start, size); } } |