summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/score/cpu/h8300/ChangeLog5
-rw-r--r--cpukit/score/cpu/h8300/rtems/score/cpu.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog
index 84de25bf15..cff35ae0c6 100644
--- a/cpukit/score/cpu/h8300/ChangeLog
+++ b/cpukit/score/cpu/h8300/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * rtems/score/cpu.h: Add prototype of H8BD_Install_IRQ to eliminate
+ warning.
+
2002-10-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
diff --git a/cpukit/score/cpu/h8300/rtems/score/cpu.h b/cpukit/score/cpu/h8300/rtems/score/cpu.h
index fc3a4011f3..bb861ef2db 100644
--- a/cpukit/score/cpu/h8300/rtems/score/cpu.h
+++ b/cpukit/score/cpu/h8300/rtems/score/cpu.h
@@ -1180,6 +1180,12 @@ static inline unsigned32 CPU_swap_u32(
return( swapped );
}
+/* to be provided by the BSP */
+extern void H8BD_Install_IRQ(
+ unsigned32 vector,
+ proc_ptr new_handler,
+ proc_ptr *old_handler );
+
#ifdef __cplusplus
}
#endif