cpukit/or1k: Update CPU_ISR_handler signature

Update the OR1K CPU_ISR_handler function signature to avoid casting
function pointers.
This commit is contained in:
Kinsey Moore
2026-02-09 17:23:00 +00:00
committed by Gedare Bloom
parent be2cd3b761
commit c373cc01db
@@ -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,