kernel: fix mis-use of sys_dlist_t vs sys_dnode_t in _timeout

Not a functional bug per-se since they resolve to the same thing, but a
conceptual error nonetheless.

Change-Id: Ia11f6bd272cabe8da21d59e3378b8348f034e814
Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
This commit is contained in:
Benjamin Walsh 2016-12-10 10:26:35 -05:00 committed by Benjamin Walsh
commit a2c58d5b85

View file

@ -653,7 +653,7 @@ struct _timeout;
typedef void (*_timeout_func_t)(struct _timeout *t);
struct _timeout {
sys_dlist_t node;
sys_dnode_t node;
struct k_thread *thread;
sys_dlist_t *wait_q;
int32_t delta_ticks_from_prev;