Switch from using fdt_init_reserved_mem() to dt_init_reserved_mem() to reflect the use of the unflatten devicetree APIs to process the reserved memory regions. Signed-off-by: Oreoluwa Babatunde <quic_obabatun@xxxxxxxxxxx> --- arch/arc/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index c5e3c4abb249..6b904771c158 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c @@ -527,7 +527,7 @@ void __init setup_arch(char **cmdline_p) /* copy flat DT out of .init and then unflatten it */ unflatten_and_copy_device_tree(); - fdt_init_reserved_mem(); + dt_init_reserved_mem(); /* Can be issue if someone passes cmd line arg "ro" * But that is unlikely so keeping it as it is */ -- 2.17.1