diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2014-12-12 21:05:29 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-12-13 22:32:05 -0700 |
commit | 8e04d4c537eca06112fc8508689eb6c75d1f518e (patch) | |
tree | f2fc7abebfc4a8fcc7315672eabb2beb6ec17ff7 /arch/x86/include | |
parent | 752a0b085b0c595a5979f1bee89961cffd109461 (diff) | |
download | u-boot-imx-8e04d4c537eca06112fc8508689eb6c75d1f518e.zip u-boot-imx-8e04d4c537eca06112fc8508689eb6c75d1f518e.tar.gz u-boot-imx-8e04d4c537eca06112fc8508689eb6c75d1f518e.tar.bz2 |
x86: queensbay: Adapt FSP support codes
Use inline assembly codes to call FspNotify() to make sure parameters
are passed on the stack as required by the FSP calling convention.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h b/arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h index 3e53ea1..3296a2b 100644 --- a/arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h +++ b/arch/x86/include/asm/arch-queensbay/fsp/fsp_support.h @@ -26,7 +26,7 @@ struct shared_data_t { void asm_continuation(void); -void bl_main_continue(void *hob_list, struct shared_data_t *shared_data); +void fsp_init_done(void *hob_list); /** * FSP Continuation function |