
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com --- arch/arm/lib/crt0.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..58fcd03 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -103,7 +103,7 @@ ENTRY(_main) sub r8, r8, #GD_SIZE /* new GD is below bd */
adr lr, here - ldr r0, [r8, #GD_RELOC_OFF] /* lr = gd->start_addr_sp */ + ldr r0, [r8, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ add lr, lr, r0 ldr r0, [r8, #GD_RELOCADDR] /* r0 = gd->relocaddr */ b relocate_code

Dear Masahiro Yamada,
On Thursday, May 9, 2013 9:12:17 AM, Masahiro Yamada wrote:
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com
arch/arm/lib/crt0.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..58fcd03 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -103,7 +103,7 @@ ENTRY(_main) sub r8, r8, #GD_SIZE /* new GD is below bd */
adr lr, here
- ldr r0, [r8, #GD_RELOC_OFF] /* lr = gd->start_addr_sp */
- ldr r0, [r8, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ add lr, lr, r0 ldr r0, [r8, #GD_RELOCADDR] /* r0 = gd->relocaddr */ b relocate_code
-- 1.7.9.5
U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
Correct. While you're at it, can you also fix the comment on line 100: "r8 = gd->start_addr_sp" -> "sp = gd->start_addr_sp"
Thanks.
Best regards, Benoît

From: Masahiro Yamada yamada.m@jp.panasonic.com
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com ---
Changed for v2: - Fix one more comment
arch/arm/lib/crt0.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..a5bffb8 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -97,13 +97,13 @@ ENTRY(_main) * 'here' but relocated. */
- ldr sp, [r8, #GD_START_ADDR_SP] /* r8 = gd->start_addr_sp */ + ldr sp, [r8, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */ bic sp, sp, #7 /* 8-byte alignment for ABI compliance */ ldr r8, [r8, #GD_BD] /* r8 = gd->bd */ sub r8, r8, #GD_SIZE /* new GD is below bd */
adr lr, here - ldr r0, [r8, #GD_RELOC_OFF] /* lr = gd->start_addr_sp */ + ldr r0, [r8, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ add lr, lr, r0 ldr r0, [r8, #GD_RELOCADDR] /* r0 = gd->relocaddr */ b relocate_code

I sent this mail by operation mistake of "git send-email".
The mail address "y@epochmail.jp.panasonic.com" written in "From:" field of the email is incorrect.
I posted again with the same subject. The Message-ID of the correct mail is 1368159848-3964-1-git-send-email-yamada.m@jp.panasonic.com
Very sorry for noise.

Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com ---
Changed for v2: - Fix one more comment
arch/arm/lib/crt0.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..a5bffb8 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -97,13 +97,13 @@ ENTRY(_main) * 'here' but relocated. */
- ldr sp, [r8, #GD_START_ADDR_SP] /* r8 = gd->start_addr_sp */ + ldr sp, [r8, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */ bic sp, sp, #7 /* 8-byte alignment for ABI compliance */ ldr r8, [r8, #GD_BD] /* r8 = gd->bd */ sub r8, r8, #GD_SIZE /* new GD is below bd */
adr lr, here - ldr r0, [r8, #GD_RELOC_OFF] /* lr = gd->start_addr_sp */ + ldr r0, [r8, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ add lr, lr, r0 ldr r0, [r8, #GD_RELOCADDR] /* r0 = gd->relocaddr */ b relocate_code

Changed for v2:
- Fix one more comment
I added one more comment line fixed at version 2.
So, I am thinking the commit log should become "arm: fix comments" rather than "arm: fix a comment"
Is it better to re-post my patch as version 3 with only commit log changed? Am I too worried about it??
I'm new here, and I'm not sure this kind of update is mandatory. I will appreciate any advice.
Best Regards Masahiro Yamada

Hi Masahiro,
On Tue, 14 May 2013 10:43:07 +0900, Masahiro Yamada yamada.m@jp.panasonic.com wrote:
Changed for v2:
- Fix one more comment
I added one more comment line fixed at version 2.
So, I am thinking the commit log should become "arm: fix comments" rather than "arm: fix a comment"
Is it better to re-post my patch as version 3 with only commit log changed? Am I too worried about it??
You should try to read your commit message summary to yourself as if you did not know what the change is about, because that's what it is useful for: giving people a good idea of the change. If the summary tells everything except the actual source code change, that's good.
A summary of "arm: fix comments" indicates two things about the change: explicitly, that it is about ARM; and implicitly, that it is cosmetic. But it does not say which part of U-Boot it applies to, even though this single file can be mentioned in a summary line. Readers will have to waste some time looking at the change content to find out.
Plus, if it is cosmetic, then the fact that it is about ARM does not matter that much, does it? e.g., someone looking for ARM changes that might explain a weird behavior will most certainly not be interested in this change even though it is ARM. For instance, a cosmetic fix on ARM code could easily go in the mainline tree without going through the ARM tree first. So, I'd put "cosmetic:" first, but admittedly, that's a debatable point.
So... how about a V3 with a commit summary of "cosmetic: arm: fix comments in arch/arm/lib/crt0.S" ? People reading the summary for no particular reason will know all there is to know except the detailed comment fixes; people looking for crt0 changes will see it, and so will people looking for ARM changes, but "cosmetic:" will help them move it aside in their search; "cosmetic:" helps deciding whether to apply the patch and to which tree; etc.
I'm new here, and I'm not sure this kind of update is mandatory. I will appreciate any advice.
No problem.
Best Regards Masahiro Yamada
Amicalement,

Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com ---
Changes for v2: - Fix one more comment
Changes for v3: - Fix the commit log to indicate * this patch is entirely cosmetic * which part was changed at a glance
arch/arm/lib/crt0.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..a5bffb8 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -97,13 +97,13 @@ ENTRY(_main) * 'here' but relocated. */
- ldr sp, [r8, #GD_START_ADDR_SP] /* r8 = gd->start_addr_sp */ + ldr sp, [r8, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */ bic sp, sp, #7 /* 8-byte alignment for ABI compliance */ ldr r8, [r8, #GD_BD] /* r8 = gd->bd */ sub r8, r8, #GD_SIZE /* new GD is below bd */
adr lr, here - ldr r0, [r8, #GD_RELOC_OFF] /* lr = gd->start_addr_sp */ + ldr r0, [r8, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ add lr, lr, r0 ldr r0, [r8, #GD_RELOCADDR] /* r0 = gd->relocaddr */ b relocate_code

Hi Masahiro,
On Wed, 15 May 2013 17:33:16 +0900, Masahiro Yamada yamada.m@jp.panasonic.com wrote:
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com
Changes for v2:
- Fix one more comment
Changes for v3:
- Fix the commit log to indicate
- this patch is entirely cosmetic
- which part was changed at a glance
arch/arm/lib/crt0.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..a5bffb8 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -97,13 +97,13 @@ ENTRY(_main)
- 'here' but relocated.
*/
- ldr sp, [r8, #GD_START_ADDR_SP] /* r8 = gd->start_addr_sp */
ldr sp, [r8, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */ bic sp, sp, #7 /* 8-byte alignment for ABI compliance */ ldr r8, [r8, #GD_BD] /* r8 = gd->bd */ sub r8, r8, #GD_SIZE /* new GD is below bd */
adr lr, here
- ldr r0, [r8, #GD_RELOC_OFF] /* lr = gd->start_addr_sp */
- ldr r0, [r8, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ add lr, lr, r0 ldr r0, [r8, #GD_RELOCADDR] /* r0 = gd->relocaddr */ b relocate_code
Applied to u-boot-arm/master, thanks!
Amicalement,

Hello Albert,
Thanks for your advice.
So... how about a V3 with a commit summary of "cosmetic: arm: fix comments in arch/arm/lib/crt0.S" ? People reading the summary for no
I posted a v3 patch as suggested.
Best Regard, Masahiro Yamada
participants (4)
-
Albert ARIBAUD
-
Benoît Thébaudeau
-
Masahiro Yamada
-
y@epochmail.jp.panasonic.com