]> git.sur5r.net Git - freertos/commitdiff
Formatting changes only in TriCore porttrap.c.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 22 Nov 2011 13:35:26 +0000 (13:35 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 22 Nov 2011 13:35:26 +0000 (13:35 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1640 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/portable/GCC/TriCore_1782/porttrap.c

index 47df295aaefc2fde00a85ee78399b25b19bc24e5..ef9e767b2cebbb6e102cf0af4b86ce5343b57240 100644 (file)
@@ -140,38 +140,37 @@ void vNonMaskableInterruptTrap( int iTrapIdentification ) __attribute__( ( longc
 \r
 void vTrapInstallHandlers( void )\r
 {\r
-       if ( 0 == _install_trap_handler ( portMMU_TRAP, vMMUTrap ) )\r
+       if( 0 == _install_trap_handler ( portMMU_TRAP, vMMUTrap ) )\r
        {\r
                _debug();\r
        }\r
-       if ( 0 == _install_trap_handler ( portIPT_TRAP, vInternalProtectionTrap ) )\r
-       {\r
-               _debug();\r
-       }\r
-       if ( 0 == _install_trap_handler ( portIE_TRAP, vInstructionErrorTrap ) )\r
+\r
+       if( 0 == _install_trap_handler ( portIPT_TRAP, vInternalProtectionTrap ) )\r
        {\r
                _debug();\r
        }\r
-       if ( 0 == _install_trap_handler ( portCM_TRAP, vContextManagementTrap ) )\r
+\r
+       if( 0 == _install_trap_handler ( portIE_TRAP, vInstructionErrorTrap ) )\r
        {\r
                _debug();\r
        }\r
-       if ( 0 == _install_trap_handler ( portSBP_TRAP, vSystemBusAndPeripheralsTrap ) )\r
+\r
+       if( 0 == _install_trap_handler ( portCM_TRAP, vContextManagementTrap ) )\r
        {\r
                _debug();\r
        }\r
-       if ( 0 == _install_trap_handler ( portASSERT_TRAP, vAssertionTrap ) )\r
+\r
+       if( 0 == _install_trap_handler ( portSBP_TRAP, vSystemBusAndPeripheralsTrap ) )\r
        {\r
                _debug();\r
        }\r
-/*     Trap Handler 6 (Syscall) is installed in port.c as it is fundamental to\r
- *     the OS operation. These trap handlers is are place holders.\r
- *     if ( 0 != _install_trap_handler ( portMMU_TRAP, vMMUTrap ) )\r
+\r
+       if( 0 == _install_trap_handler ( portASSERT_TRAP, vAssertionTrap ) )\r
        {\r
                _debug();\r
        }\r
-*/\r
-       if ( 0 == _install_trap_handler ( portNMI_TRAP, vNonMaskableInterruptTrap ) )\r
+\r
+       if( 0 == _install_trap_handler ( portNMI_TRAP, vNonMaskableInterruptTrap ) )\r
        {\r
                _debug();\r
        }\r
@@ -180,7 +179,7 @@ void vTrapInstallHandlers( void )
 \r
 void vMMUTrap( int iTrapIdentification )\r
 {\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
        case portTIN_MMU_VIRTUAL_ADDRESS_FILL:\r
        case portTIN_MMU_VIRTUAL_ADDRESS_PROTECTION:\r
@@ -194,7 +193,7 @@ void vMMUTrap( int iTrapIdentification )
 void vInternalProtectionTrap( int iTrapIdentification )\r
 {\r
        /* Deliberate fall through to default. */\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
                case portTIN_IPT_PRIVILIGED_INSTRUCTION:\r
                        /* Instruction is not allowed at current execution level, eg DISABLE at User-0. */\r
@@ -229,7 +228,7 @@ void vInternalProtectionTrap( int iTrapIdentification )
 void vInstructionErrorTrap( int iTrapIdentification )\r
 {\r
        /* Deliberate fall through to default. */\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
                case portTIN_IE_ILLEGAL_OPCODE:\r
                case portTIN_IE_UNIMPLEMENTED_OPCODE:\r
@@ -246,7 +245,7 @@ void vInstructionErrorTrap( int iTrapIdentification )
 void vContextManagementTrap( int iTrapIdentification )\r
 {\r
        /* Deliberate fall through to default. */\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
                case portTIN_CM_FREE_CONTEXT_LIST_DEPLETION:\r
                case portTIN_CM_CALL_DEPTH_OVERFLOW:\r
@@ -265,7 +264,7 @@ void vContextManagementTrap( int iTrapIdentification )
 void vSystemBusAndPeripheralsTrap( int iTrapIdentification )\r
 {\r
        /* Deliberate fall through to default. */\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
                case portTIN_SBP_PROGRAM_FETCH_SYNCHRONOUS_ERROR:\r
                case portTIN_SBP_DATA_ACCESS_SYNCHRONOUS_ERROR:\r
@@ -283,7 +282,7 @@ void vSystemBusAndPeripheralsTrap( int iTrapIdentification )
 void vAssertionTrap( int iTrapIdentification )\r
 {\r
        /* Deliberate fall through to default. */\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
                case portTIN_ASSERT_ARITHMETIC_OVERFLOW:\r
                case portTIN_ASSERT_STICKY_ARITHMETIC_OVERFLOW:\r
@@ -297,7 +296,7 @@ void vAssertionTrap( int iTrapIdentification )
 void vNonMaskableInterruptTrap( int iTrapIdentification )\r
 {\r
        /* Deliberate fall through to default. */\r
-       switch ( iTrapIdentification )\r
+       switch( iTrapIdentification )\r
        {\r
                case portTIN_NMI_NON_MASKABLE_INTERRUPT:\r
                default:\r