ftrace.h 262 B

1234567891011121314
  1. #ifndef _ASM_ARM_FTRACE
  2. #define _ASM_ARM_FTRACE
  3. #ifdef CONFIG_FUNCTION_TRACER
  4. #define MCOUNT_ADDR ((long)(mcount))
  5. #define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */
  6. #ifndef __ASSEMBLY__
  7. extern void mcount(void);
  8. #endif
  9. #endif
  10. #endif /* _ASM_ARM_FTRACE */