interrupts.c 344 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2011 The Chromium OS Authors.
  4. * Use of this source code is governed by a BSD-style license that can be
  5. * found in the LICENSE file.
  6. */
  7. #include <common.h>
  8. int interrupt_init(void)
  9. {
  10. return 0;
  11. }
  12. void enable_interrupts(void)
  13. {
  14. return;
  15. }
  16. int disable_interrupts(void)
  17. {
  18. return 0;
  19. }