blob: c98a1d066e9f1858ce9b08a68aeb41e2dd46cfd3 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * (C) Copyright 2007
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.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}