diff options
author | Andrew Bradford <andrew.bradford@kodakalaris.com> | 2015-05-22 15:11:23 -0400 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-06-04 02:39:39 -0600 |
commit | 1dc03c2639e6768c46c1db9ddbd2177e6962408e (patch) | |
tree | e6721f2baf8735cc31e3eb75824ac22bcd3628ca /arch/x86/lib | |
parent | 67b24970cef90b6d230e370cce9db8c29b2f4d74 (diff) | |
download | u-boot-imx-1dc03c2639e6768c46c1db9ddbd2177e6962408e.zip u-boot-imx-1dc03c2639e6768c46c1db9ddbd2177e6962408e.tar.gz u-boot-imx-1dc03c2639e6768c46c1db9ddbd2177e6962408e.tar.bz2 |
x86: fsp_support: Correct high mem comment typo
High mem starts at 4 GiB.
Signed-off-by: Andrew Bradford <andrew.bradford@kodakalaris.com>
Reviewed-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_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/fsp/fsp_support.c b/arch/x86/lib/fsp/fsp_support.c index 5f96da1..5809235 100644 --- a/arch/x86/lib/fsp/fsp_support.c +++ b/arch/x86/lib/fsp/fsp_support.c @@ -279,7 +279,7 @@ u64 fsp_get_usable_highmem_top(const void *hob_list) res_desc = (struct hob_res_desc *)hdr; if (res_desc->type == RES_SYS_MEM) { phys_start = res_desc->phys_start; - /* Need memory above 1MB to be collected here */ + /* Need memory above 4GB to be collected here */ if (phys_start >= (phys_addr_t)FSP_HIGHMEM_BASE) top += (u32)(res_desc->len); } |