diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-10-26 11:51:47 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-05-23 19:16:23 +0000 |
commit | bf282c263078ec42445e192a6715f333b6ab16de (patch) | |
tree | bbdccef494515878b89e2379b8003b72931f88e7 /src/cpu/x86 | |
parent | c532b83437704d626d657ea1b1d07f5b28d704da (diff) |
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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68894
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/cpu/x86')
-rw-r--r-- | src/cpu/x86/smm/smm_stub.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/smm/smm_stub.S b/src/cpu/x86/smm/smm_stub.S index 1411cbc770..e44e99d721 100644 --- a/src/cpu/x86/smm/smm_stub.S +++ b/src/cpu/x86/smm/smm_stub.S @@ -238,7 +238,7 @@ apicid_end: /* 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 |