Skip to content

Commit

Permalink
ARM: zImage: don't hard code the stack size twice
Browse files Browse the repository at this point in the history
Acked-by: Eric Miao <eric.miao@canonical.com>
Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
  • Loading branch information
Uwe Kleine-König committed Jun 17, 2010
1 parent 7e27d6e commit 88237c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/arm/boot/compressed/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ LC0: .word LC0 @ r1
.word _image_size @ r6
.word _got_start @ r11
.word _got_end @ ip
.word user_stack+4096 @ sp
.word user_stack_end @ sp
LC1: .word reloc_end - reloc_start
.size LC0, . - LC0

Expand Down Expand Up @@ -1070,3 +1070,4 @@ reloc_end:
.align
.section ".stack", "w"
user_stack: .space 4096
user_stack_end:

0 comments on commit 88237c2

Please sign in to comment.