mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 10:01:39 -05:00
While the GCC and Clang compilers already define __ASSEMBLER__ automatically when compiling assembly code, __ASSEMBLY__ is a macro that only gets defined by the Makefiles in the kernel. This can be very confusing when switching between userspace and kernelspace coding, or when dealing with uapi headers that rather should use __ASSEMBLER__ instead. So let's standardize on the __ASSEMBLER__ macro that is provided by the compilers now. This is a completely mechanical patch (done with a simple "sed -i" statement). Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Guo Ren (Alibaba DAMO Academy) <guoren@kernel.org>
33 lines
631 B
C
33 lines
631 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __ASM_CSKY_FTRACE_H
|
|
#define __ASM_CSKY_FTRACE_H
|
|
|
|
#define MCOUNT_INSN_SIZE 14
|
|
|
|
#define HAVE_FUNCTION_GRAPH_FP_TEST
|
|
|
|
#define ARCH_SUPPORTS_FTRACE_OPS 1
|
|
|
|
#define MCOUNT_ADDR ((unsigned long)_mcount)
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
extern void _mcount(unsigned long);
|
|
|
|
extern void ftrace_graph_call(void);
|
|
|
|
static inline unsigned long ftrace_call_adjust(unsigned long addr)
|
|
{
|
|
return addr;
|
|
}
|
|
|
|
struct dyn_arch_ftrace {
|
|
};
|
|
|
|
void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
|
|
unsigned long frame_pointer);
|
|
|
|
#endif /* !__ASSEMBLER__ */
|
|
#endif /* __ASM_CSKY_FTRACE_H */
|