interrupts.c 330 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2007
  4. * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
  5. *
  6. * (C) Copyright 2007
  7. * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  8. */
  9. #include <common.h>
  10. int interrupt_init(void)
  11. {
  12. return 0;
  13. }
  14. void enable_interrupts(void)
  15. {
  16. }
  17. int disable_interrupts(void)
  18. {
  19. return 0;
  20. }