mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 14:18:20 +00:00
Removed warning.
This commit is contained in:
@@ -34,8 +34,10 @@ void _CPU_Initialize(
|
||||
void (*thread_dispatch) /* ignored on this CPU */
|
||||
)
|
||||
{
|
||||
#if CPU_HARDWARE_FP
|
||||
register unsigned16 fp_status asm ("ax");
|
||||
register void *fp_context;
|
||||
#endif
|
||||
|
||||
_CPU_Table = *cpu_table;
|
||||
|
||||
|
||||
@@ -163,7 +163,7 @@ void _CPU_Install_interrupt_stack( void )
|
||||
i960_PRCB *prcb = _CPU_Table.Prcb;
|
||||
unsigned32 level;
|
||||
#if defined(__i960RP__) || defined(__i960_RP__)
|
||||
int *isp = (int *) ISP_ADDR;
|
||||
unsigned32 *isp = (int *) ISP_ADDR;
|
||||
#endif
|
||||
|
||||
/*
|
||||
@@ -178,7 +178,7 @@ void _CPU_Install_interrupt_stack( void )
|
||||
#if defined(__i960CA__) || defined(__i960_CA__) || defined(__i960CA)
|
||||
soft_reset( prcb );
|
||||
#elif defined(__i960RP__) || defined(__i960_RP__) || defined(__i960RP)
|
||||
*isp = prcb->intr_stack;
|
||||
*isp = (unsigned32) prcb->intr_stack;
|
||||
#endif
|
||||
|
||||
_CPU_ISR_Enable( level );
|
||||
|
||||
Reference in New Issue
Block a user