aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2010-03-24 06:06:23 -0400
committerMichal Simek <monstr@monstr.eu>2010-04-01 02:38:24 -0400
commit3f2189358666b6fa09d41f527be07b3cc8026050 (patch)
tree19396aa91772c954e297f5a4cd9c7ab3fa88078d /arch
parent0691c97d74cbdfd49333ef01939ecaef158ebe1b (diff)
microblaze: head.S typo fix
I forget to change register name in comments. Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch')
-rw-r--r--arch/microblaze/kernel/head.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/head.S b/arch/microblaze/kernel/head.S
index ba2c0333c6b..da6a5f5dc76 100644
--- a/arch/microblaze/kernel/head.S
+++ b/arch/microblaze/kernel/head.S
@@ -105,8 +105,8 @@ no_fdt_arg:
105 tophys(r4,r4) /* convert to phys address */ 105 tophys(r4,r4) /* convert to phys address */
106 ori r3, r0, COMMAND_LINE_SIZE - 1 /* number of loops */ 106 ori r3, r0, COMMAND_LINE_SIZE - 1 /* number of loops */
107_copy_command_line: 107_copy_command_line:
108 lbu r2, r5, r6 /* r7=r5+r6 - r5 contain pointer to command line */ 108 lbu r2, r5, r6 /* r2=r5+r6 - r5 contain pointer to command line */
109 sb r2, r4, r6 /* addr[r4+r6]= r7*/ 109 sb r2, r4, r6 /* addr[r4+r6]= r2*/
110 addik r6, r6, 1 /* increment counting */ 110 addik r6, r6, 1 /* increment counting */
111 bgtid r3, _copy_command_line /* loop for all entries */ 111 bgtid r3, _copy_command_line /* loop for all entries */
112 addik r3, r3, -1 /* descrement loop */ 112 addik r3, r3, -1 /* descrement loop */