interrupts.c 257 B

12345678910111213141516171819202122
  1. /*
  2. * (C) Copyright 2007
  3. * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.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. }