blob: 52ba7c2104da9a34c17b23b9ba8a6d94713c994e [file] [log] [blame]
Simon Glassb8605a12011-10-03 19:26:37 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Simon Glassb8605a12011-10-03 19:26:37 +00007 */
8
9#include <common.h>
10
11int interrupt_init(void)
12{
13 return 0;
14}
15
16void enable_interrupts(void)
17{
18 return;
19}
20int disable_interrupts(void)
21{
22 return 0;
23}