diff options
Diffstat (limited to 'roms/u-boot/arch/sh/cpu/sh4/interrupts.c')
-rw-r--r-- | roms/u-boot/arch/sh/cpu/sh4/interrupts.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roms/u-boot/arch/sh/cpu/sh4/interrupts.c b/roms/u-boot/arch/sh/cpu/sh4/interrupts.c new file mode 100644 index 000000000..278a3e32a --- /dev/null +++ b/roms/u-boot/arch/sh/cpu/sh4/interrupts.c @@ -0,0 +1,22 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * (C) Copyright 2007 + * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> + */ + +#include <common.h> +#include <irq_func.h> + +int interrupt_init(void) +{ + return 0; +} + +void enable_interrupts(void) +{ + +} + +int disable_interrupts(void){ + return 0; +} |