[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>

authored by Russ Anderson and committed by Tony Luck d89cfe7f e6d1ba5c

+9 -9
+9 -9
arch/ia64/kernel/vmlinux.lds.S
··· 70 70 __stop___ex_table = .; 71 71 } 72 72 73 + /* MCA table */ 74 + . = ALIGN(16); 75 + __mca_table : AT(ADDR(__mca_table) - LOAD_OFFSET) 76 + { 77 + __start___mca_table = .; 78 + *(__mca_table) 79 + __stop___mca_table = .; 80 + } 81 + 73 82 /* Global data */ 74 83 _data = .; 75 84 ··· 137 128 *(.initcall6.init) 138 129 *(.initcall7.init) 139 130 __initcall_end = .; 140 - } 141 - 142 - /* MCA table */ 143 - . = ALIGN(16); 144 - __mca_table : AT(ADDR(__mca_table) - LOAD_OFFSET) 145 - { 146 - __start___mca_table = .; 147 - *(__mca_table) 148 - __stop___mca_table = .; 149 131 } 150 132 151 133 .data.patch.vtop : AT(ADDR(.data.patch.vtop) - LOAD_OFFSET)