aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de>2015-07-29 07:13:20 -0400
committerWill Deacon <will.deacon@arm.com>2015-07-29 13:32:09 -0400
commit63a581865e9ee7b1277f1e4941d0765fdbde032a (patch)
treeb2397da6fa845a9e18aae09c17803aca254f664e
parent377bcff9a38a78083d7fff8e8a41cc894cf7813b (diff)
arm64: remove redundant object file list
Commit 4b3dc9679cf7 ("arm64: force CONFIG_SMP=y and remove redundant #ifdefs") forces SMP on arm64. To build the necessary objects for SMP, they were added to the arm64-obj-y rule in arch/arm64/kernel/Makefile, without removing the arm64-obj-$(CONFIG_SMP) rule. Remove redundant object file list depending on always-yes CONFIG_SMP in arch/arm64/kernel/Makefile. Signed-off-by: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de> Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--arch/arm64/kernel/Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm64/kernel/Makefile b/arch/arm64/kernel/Makefile
index f126cfe99003..c662197ee57c 100644
--- a/arch/arm64/kernel/Makefile
+++ b/arch/arm64/kernel/Makefile
@@ -25,7 +25,6 @@ arm64-obj-$(CONFIG_COMPAT) += sys32.o kuser32.o signal32.o \
25 ../../arm/kernel/opcodes.o 25 ../../arm/kernel/opcodes.o
26arm64-obj-$(CONFIG_FUNCTION_TRACER) += ftrace.o entry-ftrace.o 26arm64-obj-$(CONFIG_FUNCTION_TRACER) += ftrace.o entry-ftrace.o
27arm64-obj-$(CONFIG_MODULES) += arm64ksyms.o module.o 27arm64-obj-$(CONFIG_MODULES) += arm64ksyms.o module.o
28arm64-obj-$(CONFIG_SMP) += smp.o smp_spin_table.o topology.o
29arm64-obj-$(CONFIG_PERF_EVENTS) += perf_regs.o 28arm64-obj-$(CONFIG_PERF_EVENTS) += perf_regs.o
30arm64-obj-$(CONFIG_HW_PERF_EVENTS) += perf_event.o perf_callchain.o 29arm64-obj-$(CONFIG_HW_PERF_EVENTS) += perf_event.o perf_callchain.o
31arm64-obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o 30arm64-obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o