mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 17:48:33 -04:00
fix typos in comments: interace -> interface, swtich -> switch (#1022)
Fix typos in comments: interace -> interface, swtich -> switch. Signed-off-by: Florian La Roche <Florian.LaRoche@gmail.com>
This commit is contained in:
parent
8c49c54987
commit
8afb3a5b82
12 changed files with 15 additions and 15 deletions
|
@ -20,4 +20,4 @@ This port is generic and can be used as a starting point for Armv8-A
|
|||
application processors.
|
||||
|
||||
* ARM_AARCH64
|
||||
* Memory mapped interace to access Arm GIC registers
|
||||
* Memory mapped interface to access Arm GIC registers
|
||||
|
|
|
@ -20,4 +20,4 @@ This port is generic and can be used as a starting point for Armv8-A
|
|||
application processors.
|
||||
|
||||
* ARM_AARCH64_SRE
|
||||
* System Register interace to access Arm GIC registers
|
||||
* System Register interface to access Arm GIC registers
|
||||
|
|
|
@ -4,7 +4,7 @@ Initial port to support Armv8-A architecture in FreeRTOS kernel was written for
|
|||
Arm Cortex-A53 processor.
|
||||
|
||||
* ARM_CA53_64_BIT
|
||||
* Memory mapped interace to access Arm GIC registers
|
||||
* Memory mapped interface to access Arm GIC registers
|
||||
|
||||
This port is generic and can be used as a starting point for other Armv8-A
|
||||
application processors. Therefore, the port `ARM_CA53_64_BIT` is renamed as
|
||||
|
@ -13,4 +13,4 @@ should migrate to renamed port `ARM_AARCH64`.
|
|||
|
||||
**NOTE**
|
||||
|
||||
This port uses memory mapped interace to access Arm GIC registers.
|
||||
This port uses memory mapped interface to access Arm GIC registers.
|
||||
|
|
|
@ -4,7 +4,7 @@ Initial port to support Armv8-A architecture in FreeRTOS kernel was written for
|
|||
Arm Cortex-A53 processor.
|
||||
|
||||
* ARM_CA53_64_BIT_SRE
|
||||
* System Register interace to access Arm GIC registers
|
||||
* System Register interface to access Arm GIC registers
|
||||
|
||||
This port is generic and can be used as a starting point for other Armv8-A
|
||||
application processors. Therefore, the port `ARM_AARCH64_SRE` is renamed as
|
||||
|
@ -13,4 +13,4 @@ should migrate to renamed port `ARM_AARCH64_SRE`.
|
|||
|
||||
**NOTE**
|
||||
|
||||
This port uses System Register interace to access Arm GIC registers.
|
||||
This port uses System Register interface to access Arm GIC registers.
|
||||
|
|
|
@ -246,7 +246,7 @@ exit_without_switch:
|
|||
MOVS PC, LR
|
||||
|
||||
switch_before_exit:
|
||||
/* A context swtich is to be performed. Clear the context switch pending
|
||||
/* A context switch is to be performed. Clear the context switch pending
|
||||
flag. */
|
||||
MOV r0, #0
|
||||
STR r0, [r1]
|
||||
|
|
|
@ -242,7 +242,7 @@ exit_without_switch:
|
|||
MOVS PC, LR
|
||||
|
||||
switch_before_exit:
|
||||
/* A context swtich is to be performed. Clear the context switch pending
|
||||
/* A context switch is to be performed. Clear the context switch pending
|
||||
flag. */
|
||||
MOV r0, #0
|
||||
STR r0, [r1]
|
||||
|
|
|
@ -446,7 +446,7 @@ FreeRTOS_IRQ_Handler:
|
|||
* ulPortInterruptNesting. */
|
||||
STR R1, [R0]
|
||||
|
||||
/* Context swtich is only performed when interrupt nesting count is 0. */
|
||||
/* Context switch is only performed when interrupt nesting count is 0. */
|
||||
CMP R1, #0
|
||||
BNE exit_without_switch
|
||||
|
||||
|
@ -464,7 +464,7 @@ exit_without_switch:
|
|||
RFE SP!
|
||||
|
||||
switch_before_exit:
|
||||
/* A context swtich is to be performed. Clear ulPortYieldRequired. R1 holds
|
||||
/* A context switch is to be performed. Clear ulPortYieldRequired. R1 holds
|
||||
* the address of ulPortYieldRequired. */
|
||||
MOV R0, #0
|
||||
STR R0, [R1]
|
||||
|
|
|
@ -223,7 +223,7 @@ exit_without_switch:
|
|||
MOVS PC, LR
|
||||
|
||||
switch_before_exit:
|
||||
/* A context swtich is to be performed. Clear the context switch pending
|
||||
/* A context switch is to be performed. Clear the context switch pending
|
||||
flag. */
|
||||
MOV r0, #0
|
||||
STR r0, [r1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue