Skip to content

Commit c8706f4

Browse files
committed
typo & formatting
1 parent af9b0af commit c8706f4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/port.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -743,10 +743,10 @@ void vPortYieldFromTick( void )
743743
* use ISR_NOBLOCK where there is an important timer running, that should preempt the scheduler.
744744
*
745745
*/
746-
ISR( portSCHEDULER_ISR, ISR_NAKED ) __attribute__( ( hot, flatten ) );
746+
ISR( portSCHEDULER_ISR, ISR_NAKED ) __attribute__ ( ( hot, flatten ) );
747747

748-
/* ISR(portSCHEDULER_ISR, ISR_NAKED ISR_NOBLOCK) __attribute__ ((hot, flatten));
749-
*/
748+
/* ISR( portSCHEDULER_ISR, ISR_NAKED ISR_NOBLOCK ) __attribute__ ( ( hot, flatten ) );
749+
*/
750750
ISR( portSCHEDULER_ISR )
751751
{
752752
vPortYieldFromTick();
@@ -761,10 +761,10 @@ void vPortYieldFromTick( void )
761761
*
762762
* use ISR_NOBLOCK where there is an important timer running, that should preempt the scheduler.
763763
*/
764-
ISR( portSCHEDULER_ISR ) __attribute__( ( hot, flatten ) );
764+
ISR( portSCHEDULER_ISR ) __attribute__ ( ( hot, flatten ) );
765765

766-
/* ISR(portSCHEDULER_ISR, ISR_NOBLOCK) __attribute__ ((hot, flatten));
767-
*/
766+
/* ISR( portSCHEDULER_ISR, ISR_NOBLOCK ) __attribute__ ( ( hot, flatten ) );
767+
*/
768768
ISR( portSCHEDULER_ISR )
769769
{
770770
xTaskIncrementTick();

src/portmacro.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* FreeRTOS Kernel V1.0.1
2+
* FreeRTOS Kernel V11.0.1
33
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* SPDX-License-Identifier: MIT

0 commit comments

Comments
 (0)