1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * (C) Copyright 2007 4 * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 5 * 6 * (C) Copyright 2007 7 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 8 */ 9 10 #include <common.h> 11 12 int interrupt_init(void) 13 { 14 return 0; 15 } 16 17 void enable_interrupts(void) 18 { 19 20 } 21 22 int disable_interrupts(void) 23 { 24 return 0; 25 } 26