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