interrupts.c 299 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  3. * Copyright (C) 2008 Renesas Solutions Corp.
  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. {
  17. return 0;
  18. }