interrupts.c 347 B

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