diff options
author | Li Bin <huawei.libin@huawei.com> | 2016-01-30 11:54:03 +0800 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2016-01-31 05:11:21 -0500 |
commit | e11b956e9ebef098cc4f81964a1f57e40fe75cd4 (patch) | |
tree | c7ffb513ad911409340b2d0fff2f65dc1bf8c0aa /kernel/Makefile | |
parent | 9a2ddda572a002633a64b1ae5f4bc49cfcbf495f (diff) | |
download | linux-stable-e11b956e9ebef098cc4f81964a1f57e40fe75cd4.tar.gz linux-stable-e11b956e9ebef098cc4f81964a1f57e40fe75cd4.tar.bz2 linux-stable-e11b956e9ebef098cc4f81964a1f57e40fe75cd4.zip |
kernel/Makefile: remove the useless CFLAGS_REMOVE_cgroup-debug.o
The file cgroup-debug.c had been removed from commit fe6934354f8e
(cgroups: move the cgroup debug subsys into cgroup.c to access internal state).
Remain the CFLAGS_REMOVE_cgroup-debug.o = $(CC_FLAGS_FTRACE)
useless in kernel/Makefile.
Signed-off-by: Li Bin <huawei.libin@huawei.com>
Acked-by: Zefan Li <lizefan@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 53abf008ecb3..baa55e50a315 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -14,8 +14,7 @@ obj-y = fork.o exec_domain.o panic.o \ obj-$(CONFIG_MULTIUSER) += groups.o ifdef CONFIG_FUNCTION_TRACER -# Do not trace debug files and internal ftrace files -CFLAGS_REMOVE_cgroup-debug.o = $(CC_FLAGS_FTRACE) +# Do not trace internal ftrace files CFLAGS_REMOVE_irq_work.o = $(CC_FLAGS_FTRACE) endif |