Skip to content

Commit

Permalink
[IA64] Move __mca_table out of the __init section
Browse files Browse the repository at this point in the history
Move __mca_table out of the __init section.

Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Russ Anderson authored and Tony Luck committed Mar 29, 2006
1 parent e6d1ba5 commit d89cfe7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions arch/ia64/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
@@ -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 = .;

0 comments on commit d89cfe7

Please sign in to comment.