From db74b949b038ec0c8bde3e3f66810fe0b78e992f Mon Sep 17 00:00:00 2001 From: Yasushi SHOJI Date: Fri, 20 Dec 2019 00:14:06 +0900 Subject: [PATCH] boards: posix: Fix a typo It's a trivial fix for a typo in the comment. Signed-off-by: Yasushi SHOJI Signed-off-by: Anas Nashif --- boards/posix/native_posix/irq_ctrl.c | 2 +- soc/posix/inf_clock/soc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/posix/native_posix/irq_ctrl.c b/boards/posix/native_posix/irq_ctrl.c index 51800cc8e8f..8cf8ec9b7a4 100644 --- a/boards/posix/native_posix/irq_ctrl.c +++ b/boards/posix/native_posix/irq_ctrl.c @@ -238,7 +238,7 @@ static void irq_raising_from_hw_now(void) } /** - * Set/Raise an interrupt inmediately. + * Set/Raise an interrupt immediately. * Like hw_irq_ctrl_set_irq() but awake immediately the CPU instead of in * 1 delta cycle * diff --git a/soc/posix/inf_clock/soc.c b/soc/posix/inf_clock/soc.c index 503fc173e10..be61e365e69 100644 --- a/soc/posix/inf_clock/soc.c +++ b/soc/posix/inf_clock/soc.c @@ -14,7 +14,7 @@ * * The HW models raising an interrupt will "awake the cpu" by calling * posix_interrupt_raised() which will transfer control to the irq handler, - * which will run inside SW/Zephyr contenxt. After which a arch_swap() to + * which will run inside SW/Zephyr context. After which a arch_swap() to * whatever Zephyr thread may follow. Again, once Zephyr is done, control is * given back to the HW models. *