diff mbox series

ARM: uncompress: Fix dbgadtb size parameter name

Message ID 20201118191314.4019887-1-geert+renesas@glider.be (mailing list archive)
State New, archived
Headers show
Series ARM: uncompress: Fix dbgadtb size parameter name | expand

Commit Message

Geert Uytterhoeven Nov. 18, 2020, 7:13 p.m. UTC
The dbgadtb macro is passed the size of the appended DTB, not the end
address.

Fixes: c03e41470e901123 ("ARM: 9010/1: uncompress: Print the location of appended DTB")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/compressed/head.S | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Linus Walleij Dec. 4, 2020, 8:08 a.m. UTC | #1
On Wed, Nov 18, 2020 at 8:13 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> The dbgadtb macro is passed the size of the appended DTB, not the end
> address.
>
> Fixes: c03e41470e901123 ("ARM: 9010/1: uncompress: Print the location of appended DTB")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Please put this in Russell's patch tracker.

Yours,
Linus Walleij
Geert Uytterhoeven Dec. 4, 2020, 9:39 a.m. UTC | #2
Hi Linus,

On Fri, Dec 4, 2020 at 9:08 AM Linus Walleij <linus.walleij@linaro.org> wrote:
> On Wed, Nov 18, 2020 at 8:13 PM Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
> > The dbgadtb macro is passed the size of the appended DTB, not the end
> > address.
> >
> > Fixes: c03e41470e901123 ("ARM: 9010/1: uncompress: Print the location of appended DTB")
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
>
> Please put this in Russell's patch tracker.

Thanks, done.

Gr{oetje,eeting}s,

                        Geert
diff mbox series

Patch

diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S
index 9905fb7560df215d..265c029c261bc8a1 100644
--- a/arch/arm/boot/compressed/head.S
+++ b/arch/arm/boot/compressed/head.S
@@ -116,7 +116,7 @@ 
 		/*
 		 * Debug print of the final appended DTB location
 		 */
-		.macro dbgadtb, begin, end
+		.macro dbgadtb, begin, size
 #ifdef DEBUG
 		kputc   #'D'
 		kputc   #'T'
@@ -129,7 +129,7 @@ 
 		kputc	#'('
 		kputc	#'0'
 		kputc	#'x'
-		kphex	\end, 8		/* End of appended DTB */
+		kphex	\size, 8	/* Size of appended DTB */
 		kputc	#')'
 		kputc	#'\n'
 #endif