summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2011-01-23 15:22:24 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-01-24 08:38:10 +0100
commit442231fe65876a2ca4cb3aba73fb94799983a006 (patch)
tree01751ec0a929af38fda12a907832a085283348ab /arch/x86
parent286117d9379acc694367e9ca37c759ee06997237 (diff)
downloadbarebox-442231fe65876a2ca4cb3aba73fb94799983a006.tar.gz
barebox-442231fe65876a2ca4cb3aba73fb94799983a006.tar.xz
x86/pmjump: rename __bss_end to __bss_stop
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/boot/pmjump.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/boot/pmjump.S b/arch/x86/boot/pmjump.S
index 0e4cd38536..d2fb8f0ebc 100644
--- a/arch/x86/boot/pmjump.S
+++ b/arch/x86/boot/pmjump.S
@@ -51,7 +51,7 @@ protected_mode_jump:
.code32
.extern uboot_entry
- .extern __bss_end
+ .extern __bss_stop
.type in_pm32, @function
in_pm32:
@@ -65,7 +65,7 @@ in_pm32:
* Our flat mode code uses its own stack area behind the bss. With this we
* are still able to return to real mode temporarely
*/
- movl $__bss_end + 32768, %esp
+ movl $__bss_stop + 32768, %esp
# Set up TR to make Intel VT happy
ltr %di