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