diff options
| author | Jan Remes <[email protected]> | 2022-05-13 12:58:43 +0200 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2022-05-14 10:18:12 +0530 |
| commit | 1bc67db80cb0a10d8ebbaaf550a79eee2a07158e (patch) | |
| tree | e84254663cd49270fb6916e39644391dd83328c3 /include/sbi_utils | |
| parent | 575bb4e8caa02d8411934c5ca47bcf87e6764133 (diff) | |
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 <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Diffstat (limited to 'include/sbi_utils')
| -rw-r--r-- | include/sbi_utils/fdt/fdt_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sbi_utils/fdt/fdt_helper.h b/include/sbi_utils/fdt/fdt_helper.h index a9c0a8a1..74ea2340 100644 --- a/include/sbi_utils/fdt/fdt_helper.h +++ b/include/sbi_utils/fdt/fdt_helper.h @@ -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); |
