ftrace.h 379 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_PARISC_FTRACE_H
  3. #define _ASM_PARISC_FTRACE_H
  4. #ifndef __ASSEMBLY__
  5. extern void mcount(void);
  6. #define MCOUNT_INSN_SIZE 4
  7. extern unsigned long sys_call_table[];
  8. extern unsigned long return_address(unsigned int);
  9. #define ftrace_return_address(n) return_address(n)
  10. #endif /* __ASSEMBLY__ */
  11. #endif /* _ASM_PARISC_FTRACE_H */