interrupts.c 480 B

1234567891011121314151617181920212223242526
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2002
  4. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  5. * Marius Groeger <mgroeger@sysgo.de>
  6. *
  7. * (C) Copyright 2002
  8. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  9. * Alex Zuepke <azu@sysgo.de>
  10. */
  11. #include <common.h>
  12. #if defined(CONFIG_ARCH_TEGRA)
  13. static ulong timestamp;
  14. static ulong lastdec;
  15. int timer_init (void)
  16. {
  17. /* No timer routines for tegra as yet */
  18. lastdec = 0;
  19. timestamp = 0;
  20. return 0;
  21. }
  22. #endif