diff options
author | Deepak Saxena <dsaxena@plexity.net> | 2005-10-28 10:19:01 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-10-28 10:19:01 -0400 |
commit | 6f9182eb32a4e6c46813928bee50df71e3fd1c74 (patch) | |
tree | 6d5579e43a5bdb8acc7dfe301906e31087f2e741 /arch/arm/mach-pxa/mainstone.c | |
parent | 9fe133b149e8a48742a64b72f22041bcd31fe827 (diff) |
[ARM] 2988/1: Replace map_desc.physical with map_desc.pfn: PXA
Patch from Deepak Saxena
PXA map_desc.pfn conversion
Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/mainstone.c')
-rw-r--r-- | arch/arm/mach-pxa/mainstone.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/mainstone.c b/arch/arm/mach-pxa/mainstone.c index 85fdb5b1470a..8b4a21623fc0 100644 --- a/arch/arm/mach-pxa/mainstone.c +++ b/arch/arm/mach-pxa/mainstone.c | |||
@@ -317,7 +317,12 @@ static void __init mainstone_init(void) | |||
317 | 317 | ||
318 | 318 | ||
319 | static struct map_desc mainstone_io_desc[] __initdata = { | 319 | static struct map_desc mainstone_io_desc[] __initdata = { |
320 | { MST_FPGA_VIRT, MST_FPGA_PHYS, 0x00100000, MT_DEVICE }, /* CPLD */ | 320 | { /* CPLD */ |
321 | .virtual = MST_FPGA_VIRT, | ||
322 | .pfn = __phys_to_pfn(MST_FPGA_PHYS), | ||
323 | .length = 0x00100000, | ||
324 | .type = MT_DEVICE | ||
325 | } | ||
321 | }; | 326 | }; |
322 | 327 | ||
323 | static void __init mainstone_map_io(void) | 328 | static void __init mainstone_map_io(void) |