aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu/sh4/Makefile
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-11-12 16:20:36 +0900
committerPaul Mundt <lethal@linux-sh.org>2009-11-12 16:20:36 +0900
commitc4e708dc52b0e68d81a322ad11b280374685956e (patch)
treef41a5982c641b4c2604e98c8306af8b289b82438 /arch/sh/kernel/cpu/sh4/Makefile
parentsh: Enable PMB support for all SH-4A CPUs. (diff)
downloadlinux-dev-c4e708dc52b0e68d81a322ad11b280374685956e.tar.xz
linux-dev-c4e708dc52b0e68d81a322ad11b280374685956e.zip
sh: Fix up the CONFIG_PERF_EVENTS=n build for SH-4.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/sh4/Makefile')
-rw-r--r--arch/sh/kernel/cpu/sh4/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/sh/kernel/cpu/sh4/Makefile b/arch/sh/kernel/cpu/sh4/Makefile
index c39c1235db91..3a1dbc709831 100644
--- a/arch/sh/kernel/cpu/sh4/Makefile
+++ b/arch/sh/kernel/cpu/sh4/Makefile
@@ -10,9 +10,9 @@ obj-$(CONFIG_SH_FPU) += fpu.o softfloat.o
obj-$(CONFIG_SH_STORE_QUEUES) += sq.o
# Perf events
-obj-$(CONFIG_CPU_SUBTYPE_SH7750) += perf_event.o
-obj-$(CONFIG_CPU_SUBTYPE_SH7750S) += perf_event.o
-obj-$(CONFIG_CPU_SUBTYPE_SH7091) += perf_event.o
+perf-$(CONFIG_CPU_SUBTYPE_SH7750) := perf_event.o
+perf-$(CONFIG_CPU_SUBTYPE_SH7750S) := perf_event.o
+perf-$(CONFIG_CPU_SUBTYPE_SH7091) := perf_event.o
# CPU subtype setup
obj-$(CONFIG_CPU_SUBTYPE_SH7750) += setup-sh7750.o
@@ -32,4 +32,5 @@ endif
# Additional clocks by subtype
clock-$(CONFIG_CPU_SUBTYPE_SH4_202) += clock-sh4-202.o
-obj-y += $(clock-y)
+obj-y += $(clock-y)
+obj-$(CONFIG_PERF_EVENTS) += $(perf-y)