Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b8605a1 | 2011-10-03 19:26:37 +0000 | [diff] [blame] | 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. |
Simon Glass | b8605a1 | 2011-10-03 19:26:37 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | c30b7ad | 2019-11-14 12:57:41 -0700 | [diff] [blame] | 9 | #include <irq_func.h> |
Simon Glass | b8605a1 | 2011-10-03 19:26:37 +0000 | [diff] [blame] | 10 | |
| 11 | int interrupt_init(void) |
| 12 | { |
| 13 | return 0; |
| 14 | } |
| 15 | |
| 16 | void enable_interrupts(void) |
| 17 | { |
| 18 | return; |
| 19 | } |
| 20 | int disable_interrupts(void) |
| 21 | { |
| 22 | return 0; |
| 23 | } |