mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 14:36:40 +07:00
15 lines
277 B
C
15 lines
277 B
C
|
#ifndef _ASM_X86_FTRACE
|
||
|
#define _ASM_SPARC64_FTRACE
|
||
|
|
||
|
#ifdef CONFIG_FTRACE
|
||
|
#define MCOUNT_ADDR ((long)(mcount))
|
||
|
#define MCOUNT_INSN_SIZE 5 /* sizeof mcount call */
|
||
|
|
||
|
#ifndef __ASSEMBLY__
|
||
|
extern void mcount(void);
|
||
|
#endif
|
||
|
|
||
|
#endif /* CONFIG_FTRACE */
|
||
|
|
||
|
#endif /* _ASM_X86_FTRACE */
|