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

Commit 39b74fe8 authored by Russell King's avatar Russell King
Browse files

ARM: keystone2: move address space switch printk into generic code



There is no point platform code doing this, let's move it into the
generic code so it doesn't get duplicated.

Acked-by: default avatarSantosh Shilimkar <ssantosh@kernel.org>
Tested-by: default avatarMurali Karicheri <m-karicheri2@ti.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent c8ca2b4b
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -93,9 +93,6 @@ static long long __init keystone_init_meminfo(void)
	/* Populate the arch idmap hook */
	arch_virt_to_idmap = keystone_virt_to_idmap;

	pr_info("Switching to high address space at 0x%llx\n",
	        (u64)PHYS_OFFSET + (u64)offset);

	return offset;
}

+3 −0
Original line number Diff line number Diff line
@@ -1424,6 +1424,9 @@ void __init early_paging_init(const struct machine_desc *mdesc,
	if (offset == 0)
		return;

	pr_info("Switching physical address space to 0x%08llx\n",
		(u64)PHYS_OFFSET + offset);

	/* Re-set the phys pfn offset, and the pv offset */
	__pv_offset += offset;
	__pv_phys_pfn_offset += PFN_DOWN(offset);