ARM: 9036/1: uncompress: Fix dbgadtb size parameter name
The dbgadtb macro is passed the size of the appended DTB, not the end
address.
Fixes: c03e41470e
("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>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
This commit is contained in:
parent
0557ac83fd
commit
1ecec38547
|
@ -116,7 +116,7 @@
|
||||||
/*
|
/*
|
||||||
* Debug print of the final appended DTB location
|
* Debug print of the final appended DTB location
|
||||||
*/
|
*/
|
||||||
.macro dbgadtb, begin, end
|
.macro dbgadtb, begin, size
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
kputc #'D'
|
kputc #'D'
|
||||||
kputc #'T'
|
kputc #'T'
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
kputc #'('
|
kputc #'('
|
||||||
kputc #'0'
|
kputc #'0'
|
||||||
kputc #'x'
|
kputc #'x'
|
||||||
kphex \end, 8 /* End of appended DTB */
|
kphex \size, 8 /* Size of appended DTB */
|
||||||
kputc #')'
|
kputc #')'
|
||||||
kputc #'\n'
|
kputc #'\n'
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue