Formatting changes only in TriCore porttrap.c.

This commit is contained in:
Richard Barry 2011-11-22 13:35:26 +00:00
parent 63cab86cc7
commit abb476db24

View file

@ -144,33 +144,32 @@ void vTrapInstallHandlers( void )
{ {
_debug(); _debug();
} }
if( 0 == _install_trap_handler ( portIPT_TRAP, vInternalProtectionTrap ) ) if( 0 == _install_trap_handler ( portIPT_TRAP, vInternalProtectionTrap ) )
{ {
_debug(); _debug();
} }
if( 0 == _install_trap_handler ( portIE_TRAP, vInstructionErrorTrap ) ) if( 0 == _install_trap_handler ( portIE_TRAP, vInstructionErrorTrap ) )
{ {
_debug(); _debug();
} }
if( 0 == _install_trap_handler ( portCM_TRAP, vContextManagementTrap ) ) if( 0 == _install_trap_handler ( portCM_TRAP, vContextManagementTrap ) )
{ {
_debug(); _debug();
} }
if( 0 == _install_trap_handler ( portSBP_TRAP, vSystemBusAndPeripheralsTrap ) ) if( 0 == _install_trap_handler ( portSBP_TRAP, vSystemBusAndPeripheralsTrap ) )
{ {
_debug(); _debug();
} }
if( 0 == _install_trap_handler ( portASSERT_TRAP, vAssertionTrap ) ) if( 0 == _install_trap_handler ( portASSERT_TRAP, vAssertionTrap ) )
{ {
_debug(); _debug();
} }
/* Trap Handler 6 (Syscall) is installed in port.c as it is fundamental to
* the OS operation. These trap handlers is are place holders.
* if ( 0 != _install_trap_handler ( portMMU_TRAP, vMMUTrap ) )
{
_debug();
}
*/
if( 0 == _install_trap_handler ( portNMI_TRAP, vNonMaskableInterruptTrap ) ) if( 0 == _install_trap_handler ( portNMI_TRAP, vNonMaskableInterruptTrap ) )
{ {
_debug(); _debug();