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 interrupt_init(void)12int interrupt_init(void) 13 { 14 return 0; 15 } 16 enable_interrupts(void)17void enable_interrupts(void) 18 { 19 20 } 21 disable_interrupts(void)22int disable_interrupts(void) 23 { 24 return 0; 25 } 26