summaryrefslogtreecommitdiffstats
path: root/arch/arm/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-09-23 10:26:28 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-09-23 16:32:48 +0200
commitb4e4684958002255b311e27cb6b0b7fec7bf471e (patch)
tree50b207b214d8a9687dca264628d73e0b9a2fd355 /arch/arm/include
parent0fc7fb6b4f5c992893d7cb33b0aa40c0ea7acc23 (diff)
downloadbarebox-b4e4684958002255b311e27cb6b0b7fec7bf471e.tar.gz
barebox-b4e4684958002255b311e27cb6b0b7fec7bf471e.tar.xz
ARM mmu: find second level descriptors by walking the page table
By doing this we can remove the ptes field in struct arm_memory which won't be present in a generic memory bank structure anymore. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/include')
-rw-r--r--arch/arm/include/asm/memory.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/include/asm/memory.h b/arch/arm/include/asm/memory.h
index 93c2fe6007..0729886b82 100644
--- a/arch/arm/include/asm/memory.h
+++ b/arch/arm/include/asm/memory.h
@@ -4,7 +4,6 @@
struct arm_memory {
struct list_head list;
struct device_d *dev;
- u32 *ptes;
unsigned long start;
unsigned long size;
};