From c373cc01dbbf7a6264c982e8c019afcc1d879791 Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Fri, 6 Feb 2026 22:23:01 -0600 Subject: [PATCH] cpukit/or1k: Update CPU_ISR_handler signature Update the OR1K CPU_ISR_handler function signature to avoid casting function pointers. --- cpukit/score/cpu/or1k/include/rtems/score/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/score/cpu/or1k/include/rtems/score/cpu.h b/cpukit/score/cpu/or1k/include/rtems/score/cpu.h index cc2b6ba6c5..6e5bac554c 100644 --- a/cpukit/score/cpu/or1k/include/rtems/score/cpu.h +++ b/cpukit/score/cpu/or1k/include/rtems/score/cpu.h @@ -466,7 +466,7 @@ void _CPU_ISR_install_raw_handler( CPU_ISR_raw_handler *old_handler ); -typedef void ( *CPU_ISR_handler )( uint32_t ); +typedef void ( *CPU_ISR_handler )( void * ); void _CPU_ISR_install_vector( uint32_t vector,