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