Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68894 )
Change subject: cpu/x86/smm_stub.S: Fix comment ......................................................................
cpu/x86/smm_stub.S: Fix comment
The comment got stale because a few elements from the struct got dropped.
Change-Id: I83469e24dfab82b9182accb549960dd06d81e02f Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/cpu/x86/smm/smm_stub.S 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/68894/1
diff --git a/src/cpu/x86/smm/smm_stub.S b/src/cpu/x86/smm/smm_stub.S index 02532a4..b35cf7f 100644 --- a/src/cpu/x86/smm/smm_stub.S +++ b/src/cpu/x86/smm/smm_stub.S @@ -241,7 +241,7 @@
/* Call into the c-based SMM relocation function with the platform * parameters. Equivalent to: - * struct arg = { c_handler_params, cpu_num, smm_runtime, canary }; + * struct arg = { cpu_num, canary }; * c_handler(&arg) */ #if ENV_X86_64