diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2020-03-17 07:59:42 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-03-18 09:40:14 +0530 |
commit | 6af55769eb8cd5b9c7fdcd959586e0bc0fce3994 (patch) | |
tree | e73e27ae65e4baab3c9b19e38155ecef29fce88b /platform/qemu/virt/platform.c | |
parent | 666be6d62beffc380faf8700cc532142222826d8 (diff) |
lib: utils: Move PLIC DT fix up codes to fdt_helper.c
Now that we have a dedicated fdt_helper.c file for DT releated
helper routines, move plic_fdt_fixup() codes from plic.c to
fdt_helper.c and rename it to fdt_plic_fixup() at the same time,
to keep name consistency in the same file.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'platform/qemu/virt/platform.c')
-rw-r--r-- | platform/qemu/virt/platform.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/qemu/virt/platform.c b/platform/qemu/virt/platform.c index 92f34aa..c103e85 100644 --- a/platform/qemu/virt/platform.c +++ b/platform/qemu/virt/platform.c @@ -14,6 +14,7 @@ #include <sbi/sbi_const.h> #include <sbi/sbi_hart.h> #include <sbi/sbi_platform.h> +#include <sbi_utils/fdt/fdt_helper.h> #include <sbi_utils/irqchip/plic.h> #include <sbi_utils/serial/uart8250.h> #include <sbi_utils/sys/clint.h> @@ -46,7 +47,7 @@ static int virt_final_init(bool cold_boot) return 0; fdt = sbi_scratch_thishart_arg1_ptr(); - plic_fdt_fixup(fdt, "riscv,plic0"); + fdt_plic_fixup(fdt, "riscv,plic0"); return 0; } |