[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>
This commit is contained in:
parent
7ba6b5ece3
commit
8240979985
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue