diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2022-11-24 11:39:23 +0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2022-12-14 12:04:51 +0800 |
commit | 58e2a35f2e81b0114cf05bfd6e96e4d70e47b22c (patch) | |
tree | 4dcb578e220c3fb1701e8f4fcd7009f8371d16a5 /arch/x86 | |
parent | e23cae30801fab679e98029e0d3079592e1d3915 (diff) | |
download | u-boot-58e2a35f2e81b0114cf05bfd6e96e4d70e47b22c.tar.gz u-boot-58e2a35f2e81b0114cf05bfd6e96e4d70e47b22c.tar.bz2 u-boot-58e2a35f2e81b0114cf05bfd6e96e4d70e47b22c.zip |
x86: cosmetic: Fix a typo in the reserve_arch() comments
It should be fsp_continue().
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/cpu/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c index 86f53e78d2..6fe6eaf6c8 100644 --- a/arch/x86/cpu/cpu.c +++ b/arch/x86/cpu/cpu.c @@ -315,7 +315,7 @@ int reserve_arch(void) if (IS_ENABLED(CONFIG_HAVE_FSP)) { /* * Save stack address to CMOS so that at next S3 boot, - * we can use it as the stack address for fsp_contiue() + * we can use it as the stack address for fsp_continue() */ fsp_save_s3_stack(); } |