diff options
author | Russ Anderson <rja@efs.americas.sgi.com> | 2006-03-29 21:31:23 +0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-03-29 22:43:04 +0400 |
commit | d89cfe7f1e82d758a7983584c1593795d4e2c098 (patch) | |
tree | 4b3753dc531fdbef3710135dbb7ec1c1cf59ddb3 /arch | |
parent | e6d1ba5cd9954e7c15538aaef7585b235a69e0e1 (diff) | |
download | linux-d89cfe7f1e82d758a7983584c1593795d4e2c098.tar.xz |
[IA64] Move __mca_table out of the __init section
Move __mca_table out of the __init section.
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/kernel/vmlinux.lds.S | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/ia64/kernel/vmlinux.lds.S b/arch/ia64/kernel/vmlinux.lds.S index 0b9e56dd7f05..783600fe52b2 100644 --- a/arch/ia64/kernel/vmlinux.lds.S +++ b/arch/ia64/kernel/vmlinux.lds.S @@ -70,6 +70,15 @@ SECTIONS __stop___ex_table = .; } + /* MCA table */ + . = ALIGN(16); + __mca_table : AT(ADDR(__mca_table) - LOAD_OFFSET) + { + __start___mca_table = .; + *(__mca_table) + __stop___mca_table = .; + } + /* Global data */ _data = .; @@ -130,15 +139,6 @@ SECTIONS __initcall_end = .; } - /* MCA table */ - . = ALIGN(16); - __mca_table : AT(ADDR(__mca_table) - LOAD_OFFSET) - { - __start___mca_table = .; - *(__mca_table) - __stop___mca_table = .; - } - .data.patch.vtop : AT(ADDR(.data.patch.vtop) - LOAD_OFFSET) { __start___vtop_patchlist = .; |