diff mbox series

x86: cosmetic: Fix a typo in the reserve_arch() comments

Message ID 20221124113443.3162114-1-bmeng.cn@gmail.com
State Accepted
Commit 58e2a35f2e81b0114cf05bfd6e96e4d70e47b22c
Delegated to: Bin Meng
Headers show
Series x86: cosmetic: Fix a typo in the reserve_arch() comments | expand

Commit Message

Bin Meng Nov. 24, 2022, 11:34 a.m. UTC
It should be fsp_continue().

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

---

 arch/x86/cpu/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Nov. 26, 2022, 2:46 a.m. UTC | #1
On Thu, 24 Nov 2022 at 04:34, Bin Meng <bmeng.cn@gmail.com> wrote:
>
> It should be fsp_continue().
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>
> ---
>
>  arch/x86/cpu/cpu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Bin Meng Dec. 14, 2022, 3:52 a.m. UTC | #2
On Sat, Nov 26, 2022 at 10:46 AM Simon Glass <sjg@chromium.org> wrote:
>
> On Thu, 24 Nov 2022 at 04:34, Bin Meng <bmeng.cn@gmail.com> wrote:
> >
> > It should be fsp_continue().
> >
> > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> >
> > ---
> >
> >  arch/x86/cpu/cpu.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Reviewed-by: Simon Glass <sjg@chromium.org>

applied to u-boot-x86, thanks!
diff mbox series

Patch

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();
 		}