Commit 694f94f2 authored by Paul Mundt's avatar Paul Mundt

sh: FTRACE renamed to FUNCTION_TRACER.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 0803d540
...@@ -24,7 +24,7 @@ config SUPERH32 ...@@ -24,7 +24,7 @@ config SUPERH32
select HAVE_KPROBES select HAVE_KPROBES
select HAVE_KRETPROBES select HAVE_KRETPROBES
select HAVE_ARCH_TRACEHOOK select HAVE_ARCH_TRACEHOOK
select HAVE_FTRACE select HAVE_FUNCTION_TRACER
config SUPERH64 config SUPERH64
def_bool y if CPU_SH5 def_bool y if CPU_SH5
......
...@@ -23,7 +23,7 @@ IMAGE_OFFSET := $(shell /bin/bash -c 'printf "0x%08x" \ ...@@ -23,7 +23,7 @@ IMAGE_OFFSET := $(shell /bin/bash -c 'printf "0x%08x" \
LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
ifeq ($(CONFIG_FTRACE),y) ifeq ($(CONFIG_FUNCTION_TRACER),y)
ORIG_CFLAGS := $(KBUILD_CFLAGS) ORIG_CFLAGS := $(KBUILD_CFLAGS)
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS)) KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
endif endif
......
...@@ -372,7 +372,7 @@ syscall_exit: ...@@ -372,7 +372,7 @@ syscall_exit:
7: .long do_syscall_trace_enter 7: .long do_syscall_trace_enter
8: .long do_syscall_trace_leave 8: .long do_syscall_trace_leave
#ifdef CONFIG_FTRACE #ifdef CONFIG_FUNCTION_TRACER
.align 2 .align 2
.globl _mcount .globl _mcount
.type _mcount,@function .type _mcount,@function
...@@ -414,4 +414,4 @@ skip_trace: ...@@ -414,4 +414,4 @@ skip_trace:
ftrace_stub: ftrace_stub:
rts rts
nop nop
#endif /* CONFIG_FTRACE */ #endif /* CONFIG_FUNCTION_TRACER */
...@@ -134,7 +134,7 @@ EXPORT_SYMBOL(flush_dcache_page); ...@@ -134,7 +134,7 @@ EXPORT_SYMBOL(flush_dcache_page);
EXPORT_SYMBOL(clear_user_page); EXPORT_SYMBOL(clear_user_page);
#endif #endif
#ifdef CONFIG_FTRACE #ifdef CONFIG_FUNCTION_TRACER
EXPORT_SYMBOL(mcount); EXPORT_SYMBOL(mcount);
#endif #endif
EXPORT_SYMBOL(csum_partial); EXPORT_SYMBOL(csum_partial);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment