diff options
author | Russ Anderson <rja@efs.americas.sgi.com> | 2006-03-29 11:31:23 -0600 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-03-29 10:43:04 -0800 |
commit | d89cfe7f1e82d758a7983584c1593795d4e2c098 (patch) | |
tree | 4b3753dc531fdbef3710135dbb7ec1c1cf59ddb3 | |
parent | e6d1ba5cd9954e7c15538aaef7585b235a69e0e1 (diff) | |
download | op-kernel-dev-d89cfe7f1e82d758a7983584c1593795d4e2c098.zip op-kernel-dev-d89cfe7f1e82d758a7983584c1593795d4e2c098.tar.gz |
[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>
-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 0b9e56d..783600f 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 = .; |