timer.h 279 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. /* Tegra20 timer functions */
  7. #ifndef _TEGRA_TIMER_H
  8. #define _TEGRA_TIMER_H
  9. /* returns the current monotonic timer value in microseconds */
  10. unsigned long timer_get_us(void);
  11. #endif