trace_clock.h 517 B

12345678910111213141516171819
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License, version 2, as
  4. * published by the Free Software Foundation.
  5. *
  6. * Copyright (C) 2015 Naveen N. Rao, IBM Corporation
  7. */
  8. #ifndef _ASM_PPC_TRACE_CLOCK_H
  9. #define _ASM_PPC_TRACE_CLOCK_H
  10. #include <linux/compiler.h>
  11. #include <linux/types.h>
  12. extern u64 notrace trace_clock_ppc_tb(void);
  13. #define ARCH_TRACE_CLOCKS { trace_clock_ppc_tb, "ppc-tb", 0 },
  14. #endif /* _ASM_PPC_TRACE_CLOCK_H */