Skip to content

Commit

Permalink
x86_32: apic/numaq_32, fix section mismatch
Browse files Browse the repository at this point in the history
Remove __cpuinitdata section placement for translation_table
structure, since it is referenced from a functions within .text.

Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: H. Peter Anvin <hpa@zytor.com>
  • Loading branch information
Jiri Slaby authored and Ingo Molnar committed Mar 2, 2009
1 parent 2fcb1f1 commit b6122b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/apic/numaq_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct mpc_trans {
/* x86_quirks member */
static int mpc_record;

static __cpuinitdata struct mpc_trans *translation_table[MAX_MPC_ENTRY];
static struct mpc_trans *translation_table[MAX_MPC_ENTRY];

int mp_bus_id_to_node[MAX_MP_BUSSES];
int mp_bus_id_to_local[MAX_MP_BUSSES];
Expand Down

0 comments on commit b6122b3

Please sign in to comment.