trace_clock.c 364 B

123456789101112131415
  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. #include <asm/trace_clock.h>
  9. #include <asm/time.h>
  10. u64 notrace trace_clock_ppc_tb(void)
  11. {
  12. return get_tb();
  13. }