From: Uwe Kleine-König Date: Fri, 29 Jan 2010 20:37:24 +0000 (+0100) Subject: ARM: zImage: don't hard code the stack size twice X-Git-Tag: v2.6.36-rc1~591^2^2^2~9 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=88237c25aa4fe0dad177ae11214136ad78bc908f;p=karo-tx-linux.git ARM: zImage: don't hard code the stack size twice Acked-by: Eric Miao Acked-by: Nicolas Pitre Signed-off-by: Uwe Kleine-König --- diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index c5191b1532e8..390aa92ef04d 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S @@ -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 @@ -1070,3 +1070,4 @@ reloc_end: .align .section ".stack", "w" user_stack: .space 4096 +user_stack_end: