blob: 278a3e32ac910b0dcd351f3a8f1cc3cdbc318e18 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09002/*
3 * (C) Copyright 2007
4 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09005 */
6
7#include <common.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -07008#include <irq_func.h>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09009
Simon Glass9d3915b2019-11-14 12:57:40 -070010int interrupt_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090011{
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010012 return 0;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090013}
14
Simon Glass9d3915b2019-11-14 12:57:40 -070015void enable_interrupts(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090016{
17
18}
19
Simon Glass9d3915b2019-11-14 12:57:40 -070020int disable_interrupts(void){
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010021 return 0;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090022}