summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/libchip/shmdr/fatal.c6
-rw-r--r--c/src/libchip/shmdr/shm_driver.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/c/src/libchip/shmdr/fatal.c b/c/src/libchip/shmdr/fatal.c
index e8b3f87f42..914771c514 100644
--- a/c/src/libchip/shmdr/fatal.c
+++ b/c/src/libchip/shmdr/fatal.c
@@ -19,9 +19,9 @@
#include "shm_driver.h"
void MPCI_Fatal(
- Internal_errors_Source source,
- bool is_internal,
- uint32_t error
+ rtems_fatal_source source,
+ bool is_internal,
+ rtems_fatal_code error
)
{
/* Eventually need to attempt to broadcast a K_FATAL message
diff --git a/c/src/libchip/shmdr/shm_driver.h b/c/src/libchip/shmdr/shm_driver.h
index 62c5028b6a..cb94cec0cb 100644
--- a/c/src/libchip/shmdr/shm_driver.h
+++ b/c/src/libchip/shmdr/shm_driver.h
@@ -479,7 +479,7 @@ void Shm_Locked_queue_Initialize(
/* portable routines */
void Init_env_pool( void );
void Shm_Print_statistics( void );
-void MPCI_Fatal( Internal_errors_Source, bool, uint32_t);
+void MPCI_Fatal( rtems_fatal_source, bool, rtems_fatal_code );
rtems_task Shm_Cause_interrupt( uint32_t );
void Shm_install_timer( void );
void Shm_Convert_packet( rtems_packet_prefix * );