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