xref: /OK3568_Linux_fs/u-boot/arch/sh/cpu/sh3/interrupts.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * (C) Copyright 2007
3  * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4  *
5  * (C) Copyright 2007
6  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #include <common.h>
12 
interrupt_init(void)13 int interrupt_init(void)
14 {
15 	return 0;
16 }
17 
enable_interrupts(void)18 void enable_interrupts(void)
19 {
20 
21 }
22 
disable_interrupts(void)23 int disable_interrupts(void)
24 {
25 	return 0;
26 }
27