bsps/mips/hurricane/clock/ckinit.c: Address type mismatch

GCC 14 generates an error for the wrong signature function being
passed in. The underlying type was a void * so adjusting the
signature of the ISR handler was not an option. Added cast.

Closes #5272
This commit is contained in:
Joel Sherrill
2025-06-19 23:37:39 +00:00
committed by Chris Johns
parent 734208a49b
commit 6876262a44
+1 -1
View File
@@ -200,5 +200,5 @@ void Clock_exit( void )
void _Clock_Initialize( void )
{
Install_clock( Clock_isr );
Install_clock( (void *)Clock_isr );
}