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