projects
/
oweals
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
common: Move interrupt functions into a new header
[oweals/u-boot.git]
/
arch
/
sh
/
cpu
/
sh4
/
interrupts.c
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
#include <irq_func.h>
9
10
int interrupt_init(void)
11
{
12
return 0;
13
}
14
15
void enable_interrupts(void)
16
{
17
18
}
19
20
int disable_interrupts(void){
21
return 0;
22
}