interrupts.c 296 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  4. * Copyright (C) 2008 Renesas Solutions Corp.
  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. {
  16. return 0;
  17. }