From: Laurent Pinchart Date: Fri, 11 Jul 2014 11:00:38 +0000 (+0200) Subject: ARM: pxa: pxa27x: Don't map IMEMC region statically X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=8066ce3b872d0437df904cee4c0edc4501a500de;p=deliverable%2Flinux.git ARM: pxa: pxa27x: Don't map IMEMC region statically The IMEMC mapping not only has no user, but maps a reserved memory space. It just wastes vmalloc space, remove it. Signed-off-by: Laurent Pinchart Acked-by: Nicolas Pitre Signed-off-by: Olof Johansson --- diff --git a/arch/arm/mach-pxa/pxa27x.c b/arch/arm/mach-pxa/pxa27x.c index 6cc0f4656d10..b040d7d14888 100644 --- a/arch/arm/mach-pxa/pxa27x.c +++ b/arch/arm/mach-pxa/pxa27x.c @@ -404,11 +404,6 @@ static struct map_desc pxa27x_io_desc[] __initdata = { .pfn = __phys_to_pfn(PXA2XX_SMEMC_BASE), .length = SMEMC_SIZE, .type = MT_DEVICE - }, { /* IMem ctl */ - .virtual = (unsigned long)IMEMC_VIRT, - .pfn = __phys_to_pfn(IMEMC_PHYS), - .length = IMEMC_SIZE, - .type = MT_DEVICE }, { /* UNCACHED_PHYS_0 */ .virtual = UNCACHED_PHYS_0, .pfn = __phys_to_pfn(0x00000000),