summaryrefslogtreecommitdiff
path: root/src/target/armv4_5_mmu.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2010-04-10 16:46:59 +0800
committerAntonio Borneo <borneo.antonio@gmail.com>2010-04-10 16:46:59 +0800
commit4a1bd5b80603f73593fd7094d7da41ff72130461 (patch)
tree004b9e6e795f4d1af5c93b6b6d9452ca802c66b7 /src/target/armv4_5_mmu.c
parent0f3bbcf09683904c1f21b6961cbb0f36b07043c0 (diff)
downloadopenocd+libswd-4a1bd5b80603f73593fd7094d7da41ff72130461.tar.gz
openocd+libswd-4a1bd5b80603f73593fd7094d7da41ff72130461.tar.bz2
openocd+libswd-4a1bd5b80603f73593fd7094d7da41ff72130461.tar.xz
openocd+libswd-4a1bd5b80603f73593fd7094d7da41ff72130461.zip
ARMV4_5_MMU: review unused symbols
Remove unused data: - armv4_5_mmu_page_type_names Remove prototype of not existing function: - armv4mmu_translate_va Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src/target/armv4_5_mmu.c')
-rw-r--r--src/target/armv4_5_mmu.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/target/armv4_5_mmu.c b/src/target/armv4_5_mmu.c
index 4d2fbeeb..fc1dde75 100644
--- a/src/target/armv4_5_mmu.c
+++ b/src/target/armv4_5_mmu.c
@@ -26,13 +26,6 @@
#include "armv4_5_mmu.h"
-uint32_t armv4mmu_translate_va(struct target *target, struct armv4_5_mmu_common *armv4_5_mmu, uint32_t va, int *type, uint32_t *cb, int *domain, uint32_t *ap);
-
-char* armv4_5_mmu_page_type_names[] =
-{
- "section", "large page", "small page", "tiny page"
-};
-
uint32_t armv4_5_mmu_translate_va(struct target *target, struct armv4_5_mmu_common *armv4_5_mmu, uint32_t va, int *type, uint32_t *cb, int *domain, uint32_t *ap)
{
uint32_t first_lvl_descriptor = 0x0;