Skip to content

Commit 683f3a3

Browse files
committed
fix typo
1 parent 1fb4e84 commit 683f3a3

File tree

20 files changed

+19
-21
lines changed

20 files changed

+19
-21
lines changed

.github/lexicon.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,6 @@ configureit
312312
configuse
313313
configxt
314314
configyield
315-
conifgassert
316-
conifgsupport
317315
const
318316
coproc
319317
coprocessor

portable/CCS/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ BaseType_t xPortStartScheduler( void )
273273
* value. */
274274
*pucFirstUserPriorityRegister = ulOriginalPriority;
275275
}
276-
#endif /* conifgASSERT_DEFINED */
276+
#endif /* configASSERT_DEFINED */
277277

278278
/* Make PendSV and SysTick the lowest priority interrupts. */
279279
portNVIC_SHPR3_REG |= portNVIC_PENDSV_PRI;

portable/CCS/ARM_CM4F/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
* value. */
293293
*pucFirstUserPriorityRegister = ulOriginalPriority;
294294
}
295-
#endif /* conifgASSERT_DEFINED */
295+
#endif /* configASSERT_DEFINED */
296296

297297
/* Make PendSV and SysTick the lowest priority interrupts. */
298298
portNVIC_SHPR3_REG |= portNVIC_PENDSV_PRI;

portable/GCC/ARM_CA53_64_BIT/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ uint32_t ulAPSR;
302302
value. */
303303
*pucFirstUserPriorityRegister = ulOriginalPriority;
304304
}
305-
#endif /* conifgASSERT_DEFINED */
305+
#endif /* configASSERT_DEFINED */
306306

307307

308308
/* At the time of writing, the BSP only supports EL3. */

portable/GCC/ARM_CA9/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ uint32_t ulAPSR;
358358
value. */
359359
*pucFirstUserPriorityRegister = ulOriginalPriority;
360360
}
361-
#endif /* conifgASSERT_DEFINED */
361+
#endif /* configASSERT_DEFINED */
362362

363363

364364
/* Only continue if the CPU is not in User mode. The CPU must be in a

portable/GCC/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ BaseType_t xPortStartScheduler( void )
327327
* value. */
328328
*pucFirstUserPriorityRegister = ulOriginalPriority;
329329
}
330-
#endif /* conifgASSERT_DEFINED */
330+
#endif /* configASSERT_DEFINED */
331331

332332
/* Make PendSV and SysTick the lowest priority interrupts. */
333333
portNVIC_SHPR3_REG |= portNVIC_PENDSV_PRI;

portable/GCC/ARM_CM3_MPU/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ BaseType_t xPortStartScheduler( void )
435435
* value. */
436436
*pucFirstUserPriorityRegister = ulOriginalPriority;
437437
}
438-
#endif /* conifgASSERT_DEFINED */
438+
#endif /* configASSERT_DEFINED */
439439

440440
/* Make PendSV and SysTick the same priority as the kernel, and the SVC
441441
* handler higher priority so it can be used to exit a critical section (where

portable/GCC/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ BaseType_t xPortStartScheduler( void )
363363
* value. */
364364
*pucFirstUserPriorityRegister = ulOriginalPriority;
365365
}
366-
#endif /* conifgASSERT_DEFINED */
366+
#endif /* configASSERT_DEFINED */
367367

368368
/* Make PendSV and SysTick the lowest priority interrupts. */
369369
portNVIC_SHPR3_REG |= portNVIC_PENDSV_PRI;

portable/GCC/ARM_CM4_MPU/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ BaseType_t xPortStartScheduler( void )
460460
* value. */
461461
*pucFirstUserPriorityRegister = ulOriginalPriority;
462462
}
463-
#endif /* conifgASSERT_DEFINED */
463+
#endif /* configASSERT_DEFINED */
464464

465465
/* Make PendSV and SysTick the same priority as the kernel, and the SVC
466466
* handler higher priority so it can be used to exit a critical section (where

portable/GCC/ARM_CM7/r0p1/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ BaseType_t xPortStartScheduler( void )
351351
* value. */
352352
*pucFirstUserPriorityRegister = ulOriginalPriority;
353353
}
354-
#endif /* conifgASSERT_DEFINED */
354+
#endif /* configASSERT_DEFINED */
355355

356356
/* Make PendSV and SysTick the lowest priority interrupts. */
357357
portNVIC_SHPR3_REG |= portNVIC_PENDSV_PRI;

0 commit comments

Comments
 (0)