Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2111595 authored by Faiyaz Mohammed's avatar Faiyaz Mohammed Committed by Gerrit - the friendly Code Review server
Browse files

ARM64: mm: Add log in fixmap_remap_fdt for static memory



memblock_dbg is not up because of parse_early_param get called after
setup_machine_fd. To capture fdt reserved info below pr_info is added.

Change-Id: Id39ce71c3de63778e987d7ab09a6d41c6aaddc4f
Signed-off-by: default avatarFaiyaz Mohammed <faiyazm@codeaurora.org>
parent 6be46c30
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1345,6 +1345,14 @@ void *__init fixmap_remap_fdt(phys_addr_t dt_phys)
		return NULL;

	memblock_reserve(dt_phys, size);

	/*
	 * memblock_dbg is not up because of parse_early_param get called after
	 * setup_machine_fd. To capture fdt reserved info below pr_info is
	 * added.
	 */
	pr_info("memblock_reserve: 0x%x %pS\n", size - 1, (void *) _RET_IP_);

	return dt_virt;
}