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