summaryrefslogtreecommitdiffstats
path: root/arch/ia64/hp/sim
diff options
context:
space:
mode:
authorBernhard Walle2007-11-21 23:58:25 +0100
committerTony Luck2007-12-08 01:11:49 +0100
commitb898a424ed68ba73d6d4562d6370985b2e9bec61 (patch)
treeae2cc092ba5dd0f36ca53255a3cef92d1d0f8b4f /arch/ia64/hp/sim
parent[IA64] SGI Altix : fix bug in sn_io_late_init() (diff)
downloadkernel-qcow2-linux-b898a424ed68ba73d6d4562d6370985b2e9bec61.tar.gz
kernel-qcow2-linux-b898a424ed68ba73d6d4562d6370985b2e9bec61.tar.xz
kernel-qcow2-linux-b898a424ed68ba73d6d4562d6370985b2e9bec61.zip
[IA64] rename _bss to __bss_start
Rename _bss to __bss_start as on other architectures. That makes it possible to use the <linux/sections.h> instead of own declarations. Also add __bss_stop because that symbol exists on other architectures. Signed-off-by: Bernhard Walle <bwalle@suse.de> Cc: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/hp/sim')
-rw-r--r--arch/ia64/hp/sim/boot/bootloader.lds3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/hp/sim/boot/bootloader.lds b/arch/ia64/hp/sim/boot/bootloader.lds
index 69ae58531033..3977f25a1265 100644
--- a/arch/ia64/hp/sim/boot/bootloader.lds
+++ b/arch/ia64/hp/sim/boot/bootloader.lds
@@ -22,10 +22,11 @@ SECTIONS
.sdata : { *(.sdata) }
_edata = .;
- _bss = .;
+ __bss_start = .;
.sbss : { *(.sbss) *(.scommon) }
.bss : { *(.bss) *(COMMON) }
. = ALIGN(64 / 8);
+ __bss_stop = .;
_end = . ;
/* Stabs debugging sections. */