interrupts.c 550 B

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