From d5fcf366ee2f5edd3e25bdfb1868f32f79428ed9 Mon Sep 17 00:00:00 2001 From: Yasushi SHOJI Date: Thu, 19 Dec 2019 23:25:35 +0900 Subject: [PATCH] soc: posix: Fix function name typo It's a trivial fix for a typo in the comment. Signed-off-by: Yasushi SHOJI --- soc/posix/inf_clock/soc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/posix/inf_clock/soc.c b/soc/posix/inf_clock/soc.c index 20c17370167..503fc173e10 100644 --- a/soc/posix/inf_clock/soc.c +++ b/soc/posix/inf_clock/soc.c @@ -13,7 +13,7 @@ * the HW models. * * The HW models raising an interrupt will "awake the cpu" by calling - * poisix_interrupt_raised() which will transfer control to the irq handler, + * posix_interrupt_raised() which will transfer control to the irq handler, * which will run inside SW/Zephyr contenxt. After which a arch_swap() to * whatever Zephyr thread may follow. Again, once Zephyr is done, control is * given back to the HW models.