mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-10-04 08:02:24 +00:00

Impact: build fix for non-ftrace architectures Not all archs implement ftrace, and therefore do not have an asm/ftrace.h. This patch corrects the problem. The ftrace_nmi_enter/exit now must be defined for all archs that implement dynamic ftrace. Currently, only x86 does. Signed-off-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
9 lines
139 B
C
9 lines
139 B
C
#ifndef __ASM_SH_FTRACE_H
|
|
#define __ASM_SH_FTRACE_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
extern void mcount(void);
|
|
#endif
|
|
|
|
#endif /* __ASM_SH_FTRACE_H */
|