blob: 4ddcd37522dacf447c9e1db664077df76d087af9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb8605a12011-10-03 19:26:37 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
Simon Glassb8605a12011-10-03 19:26:37 +00006 */
7
8#include <common.h>
9
10int interrupt_init(void)
11{
12 return 0;
13}
14
15void enable_interrupts(void)
16{
17 return;
18}
19int disable_interrupts(void)
20{
21 return 0;
22}