diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2015-10-15 11:02:39 -0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-10-28 06:43:42 -0400 |
commit | 483bcc99c0a349570b30fc9cb20dea20c9387a4b (patch) | |
tree | b360bb67e6176df6f29670d6be4b96481866ff39 | |
parent | aa0efcde45a36d1ea2bc5bde4d47f36ec17502de (diff) |
ARC: boot: Non Master cpus only need to call EARLY_CPU_SETUP once
With prev fixes, all cores now start via common entry point @stext which
already calls EARLY_CPU_SETUP for all cores - so no need to invoke it
again
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
-rw-r--r-- | arch/arc/kernel/head.S | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arc/kernel/head.S b/arch/arc/kernel/head.S index e7fa703c8d5e..689dd867fdff 100644 --- a/arch/arc/kernel/head.S +++ b/arch/arc/kernel/head.S | |||
@@ -120,8 +120,6 @@ END(stext) | |||
120 | .section .text, "ax",@progbits | 120 | .section .text, "ax",@progbits |
121 | ENTRY(first_lines_of_secondary) | 121 | ENTRY(first_lines_of_secondary) |
122 | 122 | ||
123 | CPU_EARLY_SETUP | ||
124 | |||
125 | ; setup per-cpu idle task as "current" on this CPU | 123 | ; setup per-cpu idle task as "current" on this CPU |
126 | ld r0, [@secondary_idle_tsk] | 124 | ld r0, [@secondary_idle_tsk] |
127 | SET_CURR_TASK_ON_CPU r0, r1 | 125 | SET_CURR_TASK_ON_CPU r0, r1 |