summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2021-07-31 11:45:28 +0300
committerBin Meng <bmeng.cn@gmail.com>2021-08-02 10:11:41 +0300
commit53094331ff3065c4ab51e1442927b1af2b276778 (patch)
tree36ed5d3c7bf024e718b9d429c127fd73d62f6545 /cmd
parent2ab1ffa5556ccd49aa2b5e4a6cca8ab14072e860 (diff)
downloadu-boot-53094331ff3065c4ab51e1442927b1af2b276778.tar.xz
x86: cmd: hob: Fix display of resource type for system memory
The resource type for system memory is currently displayed as "unknown", which is wrong. Fixes: 51af144eb7a0 ("x86: Allow showing details about a HOB entry") Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested on chromebook_coral, chromebook_samus, chromebook_link, minnowmax Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/x86/hob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/x86/hob.c b/cmd/x86/hob.c
index 71e7fcbd65..04d092dbe7 100644
--- a/cmd/x86/hob.c
+++ b/cmd/x86/hob.c
@@ -78,7 +78,7 @@ static void show_hob_details(const struct hob_header *hdr)
const struct hob_res_desc *res = ptr;
const char *typename;
- typename = res->type > 0 && res->type <= RES_MAX_MEM_TYPE ?
+ typename = res->type >= RES_SYS_MEM && res->type <= RES_MAX_MEM_TYPE ?
res_type[res->type] : "unknown";
printf(" base = %08llx, len = %08llx, end = %08llx, type = %d (%s)\n\n",