diff options
| author | Heinrich Schuchardt <[email protected]> | 2022-11-28 10:14:20 +0100 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2022-12-05 10:37:38 +0530 |
| commit | ad2ac292635ec48fece67ce62bd7e967d9538616 (patch) | |
| tree | cb542fcfe5c474c51767ef434e55672c95e0b11f /lib/utils | |
| parent | 1f6866e0159d0c78279e8a22abe73fb39469597d (diff) | |
lib: fix fdt_parse_aclint_node()
After determining cpu_offset we have to check this variable and not
cpu_intc_offset.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Xiang W <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'lib/utils')
| -rw-r--r-- | lib/utils/fdt/fdt_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/fdt/fdt_helper.c b/lib/utils/fdt/fdt_helper.c index 43d78576..d4b38dc5 100644 --- a/lib/utils/fdt/fdt_helper.c +++ b/lib/utils/fdt/fdt_helper.c @@ -772,7 +772,7 @@ int fdt_parse_aclint_node(void *fdt, int nodeoffset, bool for_timer, continue; cpu_offset = fdt_parent_offset(fdt, cpu_intc_offset); - if (cpu_intc_offset < 0) + if (cpu_offset < 0) continue; rc = fdt_parse_hart_id(fdt, cpu_offset, &hartid); |
