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