From: Chris Zankel Date: Sun, 2 May 2010 06:05:29 +0000 (-0700) Subject: xtensa: Fixes due to bss boundary symbol name changes. X-Git-Tag: v2.6.36-rc1~564^2^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8b307f9c471c7d198070227be26007258b43140e;p=thirdparty%2Fkernel%2Flinux.git xtensa: Fixes due to bss boundary symbol name changes. The bss start and end symbols have changed to __bss_start and __bss_stop. Signed-off-by: Chris Zankel --- diff --git a/arch/xtensa/kernel/head.S b/arch/xtensa/kernel/head.S index d215adcfd4ea1..3ef91a73652d3 100644 --- a/arch/xtensa/kernel/head.S +++ b/arch/xtensa/kernel/head.S @@ -184,8 +184,8 @@ _startup: * Now clear the BSS segment. */ - movi a2, _bss_start # start of BSS - movi a3, _bss_end # end of BSS + movi a2, __bss_start # start of BSS + movi a3, __bss_stop # end of BSS __loopt a2, a3, a4, 2 s32i a0, a2, 0