summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJan Remes <jan.remes@codasip.com>2022-05-13 13:58:43 +0300
committerAnup Patel <anup@brainfault.org>2022-05-14 07:48:12 +0300
commit1bc67db80cb0a10d8ebbaaf550a79eee2a07158e (patch)
treee84254663cd49270fb6916e39644391dd83328c3 /lib
parent575bb4e8caa02d8411934c5ca47bcf87e6764133 (diff)
downloadopensbi-1bc67db80cb0a10d8ebbaaf550a79eee2a07158e.tar.xz
lib: utils/fdt: rename fdt_parse_max_hart_id
The function returns the highest hart-id of the harts actually used in the system (enabled). Change the name to reflect this fact. Signed-off-by: Jan Remes <jan.remes@codasip.com> Reviewed-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/utils/fdt/fdt_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/fdt/fdt_helper.c b/lib/utils/fdt/fdt_helper.c
index 5db3fbe..2bdb1ef 100644
--- a/lib/utils/fdt/fdt_helper.c
+++ b/lib/utils/fdt/fdt_helper.c
@@ -262,7 +262,7 @@ int fdt_parse_hart_id(void *fdt, int cpu_offset, u32 *hartid)
return 0;
}
-int fdt_parse_max_hart_id(void *fdt, u32 *max_hartid)
+int fdt_parse_max_enabled_hart_id(void *fdt, u32 *max_hartid)
{
u32 hartid;
int err, cpu_offset, cpus_offset;