aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/arch/sh/cpu/sh4/interrupts.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/arch/sh/cpu/sh4/interrupts.c')
-rw-r--r--roms/u-boot/arch/sh/cpu/sh4/interrupts.c22
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 00000000..c98a1d06
--- /dev/null
+++ b/roms/u-boot/arch/sh/cpu/sh4/interrupts.c
@@ -0,0 +1,22 @@
+/*
+ * (C) Copyright 2007
+ * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+
+int interrupt_init (void)
+{
+ return 0;
+}
+
+void enable_interrupts (void)
+{
+
+}
+
+int disable_interrupts (void){
+ return 0;
+}