blob: 80a13e06aa131443d17f9f5094f52ca1185d1dd2 [file] [log] [blame]
Yoshihiro Shimodaf9913a82007-12-03 22:58:45 +09001/*
2 * (C) Copyright 2007
3 * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4 *
5 * (C) Copyright 2007
6 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Yoshihiro Shimodaf9913a82007-12-03 22:58:45 +09009 */
10
11#include <common.h>
12
13int interrupt_init(void)
14{
15 return 0;
16}
17
18void enable_interrupts(void)
19{
20
21}
22
23int disable_interrupts(void)
24{
25 return 0;
26}