lib: utils/fdt: rename fdt_parse_max_hart_id
authorJan Remes <jan.remes@codasip.com>
Fri, 13 May 2022 10:58:43 +0000 (12:58 +0200)
committerAnup Patel <anup@brainfault.org>
Sat, 14 May 2022 04:48:12 +0000 (10:18 +0530)
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>
include/sbi_utils/fdt/fdt_helper.h
lib/utils/fdt/fdt_helper.c

index a9c0a8a..74ea234 100644 (file)
@@ -52,7 +52,7 @@ bool fdt_node_is_enabled(void *fdt, int nodeoff);
 
 int fdt_parse_hart_id(void *fdt, int cpu_offset, u32 *hartid);
 
-int fdt_parse_max_hart_id(void *fdt, u32 *max_hartid);
+int fdt_parse_max_enabled_hart_id(void *fdt, u32 *max_hartid);
 
 int fdt_parse_timebase_frequency(void *fdt, unsigned long *freq);
 
index 5db3fbe..2bdb1ef 100644 (file)
@@ -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;