blob: a5ee41efb9639f79f6bdd6b69e4cd4abdf0b50fa [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu5b6918e2008-08-31 22:48:33 +09002/*
3 * Copyright 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 * Copyright (C) 2008 Renesas Solutions Corp.
Nobuhiro Iwamatsu5b6918e2008-08-31 22:48:33 +09005 */
6
7#include <common.h>
8
9int interrupt_init(void)
10{
11 return 0;
12}
13
14void enable_interrupts(void)
15{
16
17}
18
19int disable_interrupts(void)
20{
21 return 0;
22}