aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@snapgear.com>2006-01-10 16:39:35 +1000
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-10 09:31:26 -0800
commit82409799853c3cabc4b17533ff640a95bef01358 (patch)
tree4a6728df6b0cafe392d03e904687f4e41727b544 /arch
parent[PATCH] h8300: remove MAGIC_ROM_PTR from k8300_ksyms.c (diff)
downloadlinux-dev-82409799853c3cabc4b17533ff640a95bef01358.tar.xz
linux-dev-82409799853c3cabc4b17533ff640a95bef01358.zip
[PATCH] h8300: remove MAGIC_ROM_PTR from memory.c
Remove obsolete MAGIC_ROM_PTR code from h8300 architecture. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-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,
return paddr;
}
-#ifdef MAGIC_ROM_PTR
-
-int is_in_rom(unsigned long addr)
-{
- /* Anything not in operational RAM is returned as in rom! */
- if (addr < _ramstart || addr >= _ramend)
- return 1;
- else
- return 0;
-}
-
-#endif
-