From: Catalin Marinas Date: Mon, 21 Jun 2010 14:12:09 +0000 (+0100) Subject: ARM: 6192/1: VExpress: Align the machine_desc.phys_io to 1MB section X-Git-Tag: v3.0~4285^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf0bb91b3ce7e42142ccea46232da19a9bbf28d5;p=platform%2Fkernel%2Flinux-amlogic.git 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 Signed-off-by: Russell King --- diff --git a/arch/arm/mach-vexpress/ct-ca9x4.c b/arch/arm/mach-vexpress/ct-ca9x4.c index 9b11eed..6353459 100644 --- a/arch/arm/mach-vexpress/ct-ca9x4.c +++ b/arch/arm/mach-vexpress/ct-ca9x4.c @@ -10,6 +10,7 @@ #include #include +#include #include #include #include @@ -236,7 +237,7 @@ static void ct_ca9x4_init(void) } MACHINE_START(VEXPRESS, "ARM-Versatile Express CA9x4") - .phys_io = V2M_UART0, + .phys_io = V2M_UART0 & SECTION_MASK, .io_pg_offst = (__MMIO_P2V(V2M_UART0) >> 18) & 0xfffc, .boot_params = PHYS_OFFSET + 0x00000100, .map_io = ct_ca9x4_map_io,