aboutsummaryrefslogtreecommitdiffstats
path: root/arch/h8300/mm
diff options
context:
space:
mode:
Diffstat (limited to 'arch/h8300/mm')
-rw-r--r--arch/h8300/mm/memory.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/h8300/mm/memory.c b/arch/h8300/mm/memory.c
index f4ddece3216f..81eace93f867 100644
--- a/arch/h8300/mm/memory.c
+++ b/arch/h8300/mm/memory.c
@@ -55,16 +55,3 @@ unsigned long kernel_map(unsigned long paddr, unsigned long size,
55 return paddr; 55 return paddr;
56} 56}
57 57
58#ifdef MAGIC_ROM_PTR
59
60int is_in_rom(unsigned long addr)
61{
62 /* Anything not in operational RAM is returned as in rom! */
63 if (addr < _ramstart || addr >= _ramend)
64 return 1;
65 else
66 return 0;
67}
68
69#endif
70