1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 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. 6 */ 7 8 #include <common.h> 9 10 int interrupt_init(void) 11 { 12 return 0; 13 } 14 15 void enable_interrupts(void) 16 { 17 return; 18 } 19 int disable_interrupts(void) 20 { 21 return 0; 22 } 23