projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00101dd
)
[MIPS] Fix UNCACHED_SDRAM
author
Vlad Lungu
<vlad@comsys.ro>
Sun, 21 Oct 2007 13:10:10 +0000
(22:10 +0900)
committer
Shinya Kuribayashi
<skuribay@ruby.dti.ne.jp>
Sun, 21 Oct 2007 13:10:10 +0000
(22:10 +0900)
PHYSADDR is for physical address, KSEG1ADDR is for uncached.
Signed-off-by: Vlad Lungu <vlad@comsys.ro>
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
include/asm-mips/addrspace.h
patch
|
blob
|
history
diff --git
a/include/asm-mips/addrspace.h
b/include/asm-mips/addrspace.h
index b8214b1c8595cdf82d862d1e5fd8cb60ca1037c3..0e6abd7d0faa914c495dcc50a354c6ca730515db 100644
(file)
--- a/
include/asm-mips/addrspace.h
+++ b/
include/asm-mips/addrspace.h
@@
-49,7
+49,7
@@
cannot access physical memory directly from core */
#define UNCACHED_SDRAM(a) (((unsigned long)(a)) | 0x20000000)
#else /* !CONFIG_AU1X00 */
-#define UNCACHED_SDRAM(a)
PHYS
ADDR(a)
+#define UNCACHED_SDRAM(a)
KSEG1
ADDR(a)
#endif /* CONFIG_AU1X00 */
#endif /* __ASSEMBLY__ */
/*