interrupts.c 333 B

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