blob: e06f9bb9cb5f1c1345c9e0fa2d83e8f5b7f07496 [file] [log] [blame]
Nobuhiro Iwamatsu6ad43d02008-08-31 22:48:33 +09001/*
2 * Copyright 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3 * Copyright (C) 2008 Renesas Solutions Corp.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu6ad43d02008-08-31 22:48:33 +09006 */
7
8#include <common.h>
9
10int interrupt_init(void)
11{
12 return 0;
13}
14
15void enable_interrupts(void)
16{
17
18}
19
20int disable_interrupts(void)
21{
22 return 0;
23}