everywhere: fix typos
Fix a lot of typos Signed-off-by: Nazar Kazakov <nazar.kazakov.work@gmail.com>
This commit is contained in:
parent
3b576fc688
commit
f483b1bc4c
757 changed files with 1284 additions and 1284 deletions
|
@ -62,7 +62,7 @@ static inline void esp_intr_unlock(void)
|
|||
}
|
||||
|
||||
/*
|
||||
* Interrupt handler table and unhandled uinterrupt routine. Duplicated
|
||||
* Interrupt handler table and unhandled interrupt routine. Duplicated
|
||||
* from xtensa_intr.c... it's supposed to be private, but we need to look
|
||||
* into it in order to see if someone allocated an int using
|
||||
* set_interrupt_handler.
|
||||
|
@ -360,7 +360,7 @@ static int get_available_int(int flags, int cpu, int force, int source)
|
|||
/* if existing vd found, don't need to search any more. */
|
||||
INTC_LOG("%s: existing vd found. intno: %d", __func__, vd->intno);
|
||||
if (force != -1 && force != vd->intno) {
|
||||
INTC_LOG("%s: intr forced but not matach existing. "
|
||||
INTC_LOG("%s: intr forced but not match existing. "
|
||||
"existing intno: %d, force: %d", __func__, vd->intno, force);
|
||||
} else if (!is_vect_desc_usable(vd, flags, cpu, force)) {
|
||||
INTC_LOG("%s: existing vd invalid.", __func__);
|
||||
|
|
|
@ -92,7 +92,7 @@ void arm_gic_eoi(unsigned int irq)
|
|||
* Ensure the write to peripheral registers are *complete* before the write
|
||||
* to GIC_EOIR.
|
||||
*
|
||||
* Note: The completion gurantee depends on various factors of system design
|
||||
* Note: The completion guarantee depends on various factors of system design
|
||||
* and the barrier is the best core can do by which execution of further
|
||||
* instructions waits till the barrier is alive.
|
||||
*/
|
||||
|
|
|
@ -480,7 +480,7 @@ static int gicv3_its_map_intid(const struct device *dev, uint32_t device_id, uin
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* The CPU id directly maps as ICID for the currect CPU redistributor */
|
||||
/* The CPU id directly maps as ICID for the current CPU redistributor */
|
||||
ret = its_send_mapti_cmd(data, device_id, event_id, intid, arch_curr_cpu()->id);
|
||||
if (ret) {
|
||||
LOG_ERR("Failed to map eventid %d to intid %d for deviceid %x",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue