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