trace_clock.c 216 B

12345678910111213
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. *
  4. * Copyright (C) 2015 Naveen N. Rao, IBM Corporation
  5. */
  6. #include <asm/trace_clock.h>
  7. #include <asm/time.h>
  8. u64 notrace trace_clock_ppc_tb(void)
  9. {
  10. return get_tb();
  11. }