blob: 21f761ac3b0f96833f066c598134c637bca6e563 [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>
Simon Glassc30b7ad2019-11-14 12:57:41 -07009#include <irq_func.h>
Simon Glassb8605a12011-10-03 19:26:37 +000010
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}