diff options
| author | Kalin Rumenov Kozhuharov <kalin@thinrope.net> | 2004-06-29 05:16:19 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-06-29 05:16:19 -0700 |
| commit | f8bd2a5f6a89fa37b3e896b938b5bda5c643eacb (patch) | |
| tree | ce55c6cd8bede57f55275726e3e62e08f8370080 | |
| parent | 191312cc67f5ccc1d0bd1b6f55b5b7dfc9d44f93 (diff) | |
[PATCH] Translate Japanese comments in arch/v850
Convert the Japanese comments in arch/v850.
I am not exactly 100% sure I translated it correctly since I have no idea
what exactly was that NEC v850 evaluation board, but should be OK (say 95%
sure).
Acked by Miles Bader <miles@lsi.nec.co.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/v850/kernel/as85ep1.c | 12 | ||||
| -rw-r--r-- | arch/v850/kernel/as85ep1.ld | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/v850/kernel/as85ep1.c b/arch/v850/kernel/as85ep1.c index ccdb7fd23c61..4059b1df11b5 100644 --- a/arch/v850/kernel/as85ep1.c +++ b/arch/v850/kernel/as85ep1.c @@ -57,10 +57,10 @@ void __init mach_early_init (void) AS85EP1_ASC = 0; AS85EP1_LBS = 0x00A9; - AS85EP1_PORT_PMC(6) = 0xFF; /* A20-25, A0,A1 $BM-8z(B */ - AS85EP1_PORT_PMC(7) = 0x0E; /* CS1,2,3 $BM-8z(B */ - AS85EP1_PORT_PMC(9) = 0xFF; /* D16-23 $BM-8z(B */ - AS85EP1_PORT_PMC(10) = 0xFF; /* D24-31 $BM-8z(B */ + AS85EP1_PORT_PMC(6) = 0xFF; /* valid A0,A1,A20-A25 */ + AS85EP1_PORT_PMC(7) = 0x0E; /* valid CS1-CS3 */ + AS85EP1_PORT_PMC(9) = 0xFF; /* valid D16-D23 */ + AS85EP1_PORT_PMC(10) = 0xFF; /* valid D24-D31 */ AS85EP1_RFS(1) = 0x800c; AS85EP1_RFS(3) = 0x800c; @@ -76,7 +76,7 @@ void __init mach_early_init (void) write to address (N - 0x10). We avoid this (effectively) by writing in 16-byte chunks backwards from the end. */ - AS85EP1_IRAMM = 0x3; /* $BFbB"L?Na(BRAM$B$O!V(Bwrite-mode$B!W$K$J$j$^$9(B */ + AS85EP1_IRAMM = 0x3; /* "write-mode" for the internal instruction memory */ src = (u32 *)(((u32)&_intv_copy_src_end - 1) & ~0xF); dst = (u32 *)&_intv_copy_dst_start @@ -88,7 +88,7 @@ void __init mach_early_init (void) src -= 4; } while (src > (u32 *)&_intv_copy_src_start); - AS85EP1_IRAMM = 0x0; /* $BFbB"L?Na(BRAM$B$O!V(Bread-mode$B!W$K$J$j$^$9(B */ + AS85EP1_IRAMM = 0x0; /* "read-mode" for the internal instruction memory */ #endif /* !CONFIG_ROM_KERNEL */ v850e_intc_disable_irqs (); diff --git a/arch/v850/kernel/as85ep1.ld b/arch/v850/kernel/as85ep1.ld index 7b7ffccf60e9..ef2c4399063e 100644 --- a/arch/v850/kernel/as85ep1.ld +++ b/arch/v850/kernel/as85ep1.ld @@ -2,7 +2,7 @@ (CONFIG_V850E_AS85EP1). */ MEMORY { - /* 1MB of internal memory (Æâ¢̿ÎáRAM). */ + /* 1MB of internal instruction memory. */ iMEM0 : ORIGIN = 0, LENGTH = 0x00100000 /* 1MB of static RAM. */ |
