interrupts.c 254 B

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