timer.h 279 B

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