ARM: 6192/1: VExpress: Align the machine_desc.phys_io to 1MB section

When not aligned, random bits could be written in the initial page table
by the __create_page_tables() function.

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Catalin Marinas and committed by Russell King cf0bb91b ad642d9f

+2 -1
+2 -1
arch/arm/mach-vexpress/ct-ca9x4.c
··· 10 10 #include <linux/amba/clcd.h> 11 11 12 12 #include <asm/clkdev.h> 13 + #include <asm/pgtable.h> 13 14 #include <asm/hardware/arm_timer.h> 14 15 #include <asm/hardware/cache-l2x0.h> 15 16 #include <asm/hardware/gic.h> ··· 237 236 } 238 237 239 238 MACHINE_START(VEXPRESS, "ARM-Versatile Express CA9x4") 240 - .phys_io = V2M_UART0, 239 + .phys_io = V2M_UART0 & SECTION_MASK, 241 240 .io_pg_offst = (__MMIO_P2V(V2M_UART0) >> 18) & 0xfffc, 242 241 .boot_params = PHYS_OFFSET + 0x00000100, 243 242 .map_io = ct_ca9x4_map_io,