From ad2ac292635ec48fece67ce62bd7e967d9538616 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Mon, 28 Nov 2022 10:14:20 +0100 Subject: [PATCH] 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 Reviewed-by: Xiang W Reviewed-by: Bin Meng --- lib/utils/fdt/fdt_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/fdt/fdt_helper.c b/lib/utils/fdt/fdt_helper.c index 43d7857..d4b38dc 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); -- 2.7.4