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>
This commit is contained in:
parent
322aa801d2
commit
68d765b732
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue