From 177bbbd35f6322749c8f8ca04bc7df9b88c760c7 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Wed, 23 May 2018 08:23:00 -0500 Subject: [PATCH] kernel: Fix trivial typo in CONFIG_WAIT_Q_FAST The Kconfig option is CONFIG_WAITQ_FAST not CONFIG_WAIT_Q_FAST. Signed-off-by: Kumar Gala --- kernel/include/wait_q.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/include/wait_q.h b/kernel/include/wait_q.h index e8c53850756..e6bf4043bf3 100644 --- a/kernel/include/wait_q.h +++ b/kernel/include/wait_q.h @@ -79,7 +79,7 @@ static inline struct k_thread *_waitq_head(_wait_q_t *w) return (void *)sys_dlist_peek_head(&w->waitq); } -#endif /* !CONFIG_WAIT_Q_FAST */ +#endif /* !CONFIG_WAITQ_FAST */ #ifdef __cplusplus }