Skip to content

Commit 19e4a2d

Browse files
committed
Fix formatting check
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
1 parent 1642351 commit 19e4a2d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

include/mpu_prototypes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ BaseType_t MPU_xTaskGetSchedulerState( void ) FREERTOS_SYSTEM_CALL;
153153
StaticTask_t * const pxTaskBuffer ) FREERTOS_SYSTEM_CALL;
154154
void MPU_vTaskDelete( TaskHandle_t xTaskToDelete ) FREERTOS_SYSTEM_CALL;
155155
void MPU_vTaskPrioritySet( TaskHandle_t xTask,
156-
UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL;
156+
UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL;
157157
TaskHandle_t MPU_xTaskGetHandle( const char * pcNameToQuery ) FREERTOS_SYSTEM_CALL;
158158
BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask,
159-
void * pvParameter ) FREERTOS_SYSTEM_CALL;
159+
void * pvParameter ) FREERTOS_SYSTEM_CALL;
160160
void MPU_vTaskGetRunTimeStatistics( char * pcWriteBuffer,
161161
size_t uxBufferLength ) FREERTOS_SYSTEM_CALL;
162162
void MPU_vTaskListTasks( char * pcWriteBuffer,

include/mpu_wrappers.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,10 @@
8686
* the application can use opaque handles maintained in mpu_wrappers.c
8787
* with all the APIs. */
8888
#if ( configUSE_MPU_WRAPPERS_V1 == 1 )
89-
/* These are not needed in v2 because they do not take a task
90-
* handle and therefore, no lookup is needed. Needed in v1 because
91-
* these are available as system calls in v1. */
89+
90+
/* These are not needed in v2 because they do not take a task
91+
* handle and therefore, no lookup is needed. Needed in v1 because
92+
* these are available as system calls in v1. */
9293
#define vTaskGetRunTimeStatistics MPU_vTaskGetRunTimeStatistics
9394
#define vTaskListTasks MPU_vTaskListTasks
9495
#define vTaskSuspendAll MPU_vTaskSuspendAll

0 commit comments

Comments
 (0)