interrupts.c 273 B

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