blob: 144505a674a3b36927890d5567babd4b1d33d240 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Yoshihiro Shimodaad1a3a92007-12-03 22:58:45 +09002/*
3 * (C) Copyright 2007
4 * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5 *
6 * (C) Copyright 2007
7 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Yoshihiro Shimodaad1a3a92007-12-03 22:58:45 +09008 */
9
10#include <common.h>
11
12int interrupt_init(void)
13{
14 return 0;
15}
16
17void enable_interrupts(void)
18{
19
20}
21
22int disable_interrupts(void)
23{
24 return 0;
25}