]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/sh/cpu/sh4/interrupts.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / sh / cpu / sh4 / interrupts.c
CommitLineData
0b135cfc
NI
1/*
2 * (C) Copyright 2007
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
0b135cfc
NI
6 */
7
8#include <common.h>
9
10int interrupt_init (void)
11{
61fb15c5 12 return 0;
0b135cfc
NI
13}
14
15void enable_interrupts (void)
16{
17
18}
19
61fb15c5
WD
20int disable_interrupts (void){
21 return 0;
0b135cfc 22}