Skip to content

Commit 9a62842

Browse files
authored
Fix typo in check comment of configMAX_SYSCALL_INTERRUPT_PRIORITY (#690)
1 parent 17a46c2 commit 9a62842

File tree

37 files changed

+37
-37
lines changed

37 files changed

+37
-37
lines changed

portable/ARMv8M/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/CCS/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ BaseType_t xPortStartScheduler( void )
249249
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
250250
configASSERT( ucMaxSysCallPriority );
251251

252-
/* Check that the bits not implemented bits in hardware are zero in
252+
/* Check that the bits not implemented in hardware are zero in
253253
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
254254
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
255255

portable/CCS/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ BaseType_t xPortStartScheduler( void )
268268
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
269269
configASSERT( ucMaxSysCallPriority );
270270

271-
/* Check that the bits not implemented bits in hardware are zero in
271+
/* Check that the bits not implemented in hardware are zero in
272272
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
273273
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
274274

portable/GCC/ARM_CM23/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM23_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ BaseType_t xPortStartScheduler( void )
292292
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
293293
configASSERT( ucMaxSysCallPriority );
294294

295-
/* Check that the bits not implemented bits in hardware are zero in
295+
/* Check that the bits not implemented in hardware are zero in
296296
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
297297
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
298298

portable/GCC/ARM_CM33/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM33_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM35P/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM35P_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

0 commit comments

Comments
 (0)