xref: /rk3399_rockchip-uboot/arch/mips/cpu/interrupts.c (revision 9b9c6516b0119a4abe71b1598b2258c591f955f5)
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 
10 int interrupt_init(void)
11 {
12 	return 0;
13 }
14 
15 void enable_interrupts(void)
16 {
17 }
18 
19 int disable_interrupts(void)
20 {
21 	return 0;
22 }
23