Capitalize Rtems to RTEMS

This commit is contained in:
Marçal Comajoan Cara
2018-12-04 23:05:10 +01:00
committed by Joel Sherrill
parent 0446f68056
commit 99de42c62e
5 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ int i;
*/
/*
* Initialize Rtems management interrupt table
* Initialize RTEMS management interrupt table
*/
/*

View File

@@ -106,7 +106,7 @@ void BSP_rtems_irq_mng_init(unsigned cpuId)
printk("Going to re-initialize the rtemsIrq table %d\n",BSP_IRQ_NUMBER);
#endif
/*
* Initialize Rtems management interrupt table
* Initialize RTEMS management interrupt table
*/
/*
* re-init the rtemsIrq table

View File

@@ -54,7 +54,7 @@ void BSP_rtems_irq_mng_init(unsigned cpuId)
openpic_init(1,0,0,16,0,0);
/*
* Initialize Rtems management interrupt table
* Initialize RTEMS management interrupt table
*/
/*
* re-init the rtemsIrq table

View File

@@ -119,7 +119,7 @@ void CPU_rtems_irq_mng_init(unsigned cpuId)
CPU_USIU_irq_init();
CPU_UIMB_irq_init();
/*
* Initialize Rtems management interrupt table
* Initialize RTEMS management interrupt table
*/
/*
* re-init the rtemsIrq table

View File

@@ -43,7 +43,7 @@ void Put_Error( uint32_t source, uint32_t error )
}
else if (source == INTERNAL_ERROR_RTEMS_API ){
if (error > RTEMS_NOT_IMPLEMENTED )
printk("Unknown Internal Rtems Error (0x%08" PRIx32 ")", error);
printk("Unknown Internal RTEMS Error (0x%08" PRIx32 ")", error);
else
printk( "%s", rtems_status_text( error ) );
}