Skip to content

Commit

Permalink
xtensa: Fixes due to bss boundary symbol name changes.
Browse files Browse the repository at this point in the history
The bss start and end symbols have changed to __bss_start and __bss_stop.

Signed-off-by: Chris Zankel <chris@zankel.net>
  • Loading branch information
Chris Zankel committed May 2, 2010
1 parent ed5010e commit 8b307f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/xtensa/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8b307f9

Please sign in to comment.