diff options
author | Ming Lei <ming.lei@canonical.com> | 2011-09-29 22:07:23 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2011-09-29 22:07:23 +0200 |
commit | 2a5306cc5f383b0e7414c75e458111afd4a563a4 (patch) | |
tree | 0725cb2cf142f1bb52eb93cf0cce77f3798b2f72 /kernel/trace | |
parent | c3dc2f14622a06488f11452b6efd1e02c5a8548b (diff) | |
download | op-kernel-dev-2a5306cc5f383b0e7414c75e458111afd4a563a4.zip op-kernel-dev-2a5306cc5f383b0e7414c75e458111afd4a563a4.tar.gz |
PM / Tracing: build rpm-traces.c only if CONFIG_PM_RUNTIME is set
Do not build kernel/trace/rpm-traces.c if CONFIG_PM_RUNTIME is not
set, which avoids a build failure.
[rjw: Added the changelog and modified the subject slightly.]
Signed-off-by: Ming Lei <ming.lei@canonical.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/trace/Makefile b/kernel/trace/Makefile index 56bdab5..f49405f 100644 --- a/kernel/trace/Makefile +++ b/kernel/trace/Makefile @@ -53,7 +53,9 @@ endif obj-$(CONFIG_EVENT_TRACING) += trace_events_filter.o obj-$(CONFIG_KPROBE_EVENT) += trace_kprobe.o obj-$(CONFIG_TRACEPOINTS) += power-traces.o +ifeq ($(CONFIG_PM_RUNTIME),y) obj-$(CONFIG_TRACEPOINTS) += rpm-traces.o +endif ifeq ($(CONFIG_TRACING),y) obj-$(CONFIG_KGDB_KDB) += trace_kdb.o endif |