projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4177017
)
[MIPS] Fix plat_ioremap for JMR3927
author
Atsushi Nemoto
<anemo@mba.ocn.ne.jp>
Sat, 26 Jan 2008 05:08:02 +0000
(14:08 +0900)
committer
Ralf Baechle
<ralf@linux-mips.org>
Wed, 12 Mar 2008 14:14:41 +0000
(14:14 +0000)
TX39XX's "reserved" segment in CKSEG3 area is 0xff000000-0xfffeffff.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
include/asm-mips/mach-jmr3927/ioremap.h
patch
|
blob
|
history
diff --git
a/include/asm-mips/mach-jmr3927/ioremap.h
b/include/asm-mips/mach-jmr3927/ioremap.h
index aa131ad7f7177c9de0698ddfdcfea3061e361ff7..29989ff10d663254da95f7dcb4619f7ef5da2dcb 100644
(file)
--- a/
include/asm-mips/mach-jmr3927/ioremap.h
+++ b/
include/asm-mips/mach-jmr3927/ioremap.h
@@
-25,7
+25,7
@@
static inline void __iomem *plat_ioremap(phys_t offset, unsigned long size,
{
#define TXX9_DIRECTMAP_BASE 0xff000000ul
if (offset >= TXX9_DIRECTMAP_BASE &&
- offset < TXX9_DIRECTMAP_BASE + 0xf0000)
+ offset < TXX9_DIRECTMAP_BASE + 0xf
f
0000)
return (void __iomem *)offset;
return NULL;
}