Skip to content

Commit 268f8fc

Browse files
committed
Further clean up
1 parent d78094f commit 268f8fc

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

portable/MPLAB/PIC32MZ/port.c

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,6 @@ static void prvTaskExitError( void );
144144

145145
/*-----------------------------------------------------------*/
146146

147-
148-
/*
149-
* Used to determine if the port is in an interrupt.
150-
*/
151-
__attribute__((always_inline)) static BaseType_t xPortIsInsideInterrupt( void );
152-
153-
/*-----------------------------------------------------------*/
154-
155147
/* Records the interrupt nesting depth. This is initialised to one as it is
156148
decremented to 0 when the first task starts. */
157149
volatile UBaseType_t uxInterruptNesting = 0x01;
@@ -382,7 +374,7 @@ void vPortClearInterruptMaskFromISR( UBaseType_t uxSavedStatusRegister )
382374

383375
/*-----------------------------------------------------------*/
384376

385-
__attribute__((always_inline)) static BaseType_t xPortIsInsideInterrupt( void )
377+
__attribute__((always_inline)) BaseType_t xPortIsInsideInterrupt( void )
386378
{
387379
uint32_t ulCurrentInterrupt;
388380
BaseType_t xReturn;

0 commit comments

Comments
 (0)