Commit 1dc03c2639e6768c46c1db9ddbd2177e6962408e

Authored by Andrew Bradford
Committed by Simon Glass
1 parent 67b24970ce

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/x86/lib/fsp/fsp_support.c
... ... @@ -279,7 +279,7 @@
279 279 res_desc = (struct hob_res_desc *)hdr;
280 280 if (res_desc->type == RES_SYS_MEM) {
281 281 phys_start = res_desc->phys_start;
282   - /* Need memory above 1MB to be collected here */
  282 + /* Need memory above 4GB to be collected here */
283 283 if (phys_start >= (phys_addr_t)FSP_HIGHMEM_BASE)
284 284 top += (u32)(res_desc->len);
285 285 }