common: Move interrupt functions into a new header
[oweals/u-boot.git] / arch / sandbox / lib / interrupts.c
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
8 #include <common.h>
9 #include <irq_func.h>
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 }