Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'portable/GCC/MSP430F449/port.c')
-rw-r--r--portable/GCC/MSP430F449/port.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/portable/GCC/MSP430F449/port.c b/portable/GCC/MSP430F449/port.c
index 0b41665ce..ca72b410b 100644
--- a/portable/GCC/MSP430F449/port.c
+++ b/portable/GCC/MSP430F449/port.c
@@ -296,8 +296,8 @@ static void prvSetupTimerInterrupt( void )
* the context is saved at the start of vPortYieldFromTick(). The tick
* count is incremented after the context is saved.
*/
- interrupt( TIMERA0_VECTOR ) prvTickISR( void ) __attribute__( ( naked ) );
- interrupt( TIMERA0_VECTOR ) prvTickISR( void )
+ interrupt( TIMERA0_VECTOR ) void prvTickISR( void ) __attribute__( ( naked ) );
+ interrupt( TIMERA0_VECTOR ) void prvTickISR( void )
{
/* Save the context of the interrupted task. */
portSAVE_CONTEXT();
@@ -320,8 +320,8 @@ static void prvSetupTimerInterrupt( void )
* tick count. We don't need to switch context, this can only be done by
* manual calls to taskYIELD();
*/
- interrupt( TIMERA0_VECTOR ) prvTickISR( void );
- interrupt( TIMERA0_VECTOR ) prvTickISR( void )
+ interrupt( TIMERA0_VECTOR ) void prvTickISR( void );
+ interrupt( TIMERA0_VECTOR ) void prvTickISR( void )
{
xTaskIncrementTick();
}