[ARM] 3503/1: Fix map_desc structure for aaec2000

Patch from Bellido Nicolas

Patch:
[ARM] 2982/1: Replace map_desc.physical with map_desc.pfn: aaec2000
incorrectly expanded the struct map_desc for aaec2000.

Signed-off-by: Nicolas Bellido <ml@acolin.be>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Bellido Nicolas and committed by Russell King 16b6dd44 216251cf

+2 -2
+2 -2
arch/arm/mach-aaec2000/core.c
··· 50 50 static struct map_desc standard_io_desc[] __initdata = { 51 51 { 52 52 .virtual = VIO_APB_BASE, 53 - .physical = __phys_to_pfn(PIO_APB_BASE), 53 + .pfn = __phys_to_pfn(PIO_APB_BASE), 54 54 .length = IO_APB_LENGTH, 55 55 .type = MT_DEVICE 56 56 }, { 57 57 .virtual = VIO_AHB_BASE, 58 - .physical = __phys_to_pfn(PIO_AHB_BASE), 58 + .pfn = __phys_to_pfn(PIO_AHB_BASE), 59 59 .length = IO_AHB_LENGTH, 60 60 .type = MT_DEVICE 61 61 }