diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-08-20 06:40:20 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-26 07:54:11 -0700 |
commit | 48aa6c261492235c1e48c17a6604b71e032485e8 (patch) | |
tree | cd4488812d722ee464b613545fcf0cefd782e39e /arch/x86/lib | |
parent | 57b10f59b7c6ff0d3827e39acb6c3e348adbc14a (diff) | |
download | u-boot-imx-48aa6c261492235c1e48c17a6604b71e032485e8.zip u-boot-imx-48aa6c261492235c1e48c17a6604b71e032485e8.tar.gz u-boot-imx-48aa6c261492235c1e48c17a6604b71e032485e8.tar.bz2 |
x86: fsp: Add comments about U-Boot entering start.S twice
Add some comments in start.S for the fact that with FSP U-Boot
actually enters the code twice. Also change to use fsp_init()
and fsp_continue for accuracy.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib')
-rw-r--r-- | arch/x86/lib/fsp/fsp_car.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/fsp/fsp_car.S b/arch/x86/lib/fsp/fsp_car.S index afbf3f9..15b3751 100644 --- a/arch/x86/lib/fsp/fsp_car.S +++ b/arch/x86/lib/fsp/fsp_car.S @@ -64,7 +64,7 @@ temp_ram_init_ret: .global fsp_init_done fsp_init_done: /* - * We come here from FspInit with eax pointing to the HOB list. + * We come here from fsp_continue() with eax pointing to the HOB list. * Save eax to esi temporarily. */ movl %eax, %esi |