summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/fsp/fsp_api.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2015-12-10 22:02:57 -0800
committerBin Meng <bmeng.cn@gmail.com>2016-01-13 12:20:13 +0800
commitf0285fbe4e868311f925aeae480796d4626e1728 (patch)
tree0205e923598b31e8b13753f0ff29506bd2512ca9 /arch/x86/include/asm/fsp/fsp_api.h
parentaa02446406af194b7c79c2fae06073690e4fbba3 (diff)
downloadu-boot-imx-f0285fbe4e868311f925aeae480796d4626e1728.zip
u-boot-imx-f0285fbe4e868311f925aeae480796d4626e1728.tar.gz
u-boot-imx-f0285fbe4e868311f925aeae480796d4626e1728.tar.bz2
x86: fsp: Avoid cast stack_top in struct shared_data
Declare stack_top as u32 in struct shared_data and struct common_buf so that we can avoid casting in fsp_init(). Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/include/asm/fsp/fsp_api.h')
-rw-r--r--arch/x86/include/asm/fsp/fsp_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/fsp/fsp_api.h b/arch/x86/include/asm/fsp/fsp_api.h
index 2d34d13..db83e35 100644
--- a/arch/x86/include/asm/fsp/fsp_api.h
+++ b/arch/x86/include/asm/fsp/fsp_api.h
@@ -30,7 +30,7 @@ struct common_buf {
* Stack top pointer used by the bootloader. The new stack frame will be
* set up at this location after FspInit API call.
*/
- u32 *stack_top;
+ u32 stack_top;
u32 boot_mode; /* Current system boot mode */
void *upd_data; /* User platform configuraiton data region */
u32 reserved[7]; /* Reserved */