tracing: Fix k_fifo_put_list tracing for CONFIG_TRACING_NONE=yes

k_fifo_put_list() tracing entry points are called
sys_port_trace_k_fifo_put_list_enter and
sys_port_trace_k_fifo_put_list_exit, however, they were misnamed in
"tracing.h". So anyone using tracing and CONFIG_TRACING_NONE=yes would
see compilation errors if they tried to use k_fifo_put_list().

Signed-off-by: Ederson de Souza <ederson.desouza@intel.com>
This commit is contained in:
Ederson de Souza 2021-11-30 10:30:50 -08:00 committed by Anas Nashif
commit 53fb94c7e3

View file

@ -1153,7 +1153,7 @@ void sys_trace_idle(void);
* @param head First ll-node
* @param tail Last ll-node
*/
#define sys_port_trace_k_fifo_alloc_put_list_enter(fifo, head, tail)
#define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail)
/**
* @brief Trace FIFO Queue put list exit
@ -1161,7 +1161,7 @@ void sys_trace_idle(void);
* @param head First ll-node
* @param tail Last ll-node
*/
#define sys_port_trace_k_fifo_alloc_put_list_exit(fifo, head, tail)
#define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail)
/**
* @brief Trace FIFO Queue put slist entry