trace: Repair mux tracev argument name typo

To repair tracev_mux_with_ids macro.
Because with current macro definition
and enabled CONFIG_TRACEV macro code won't compile.

Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This commit is contained in:
Karol Trzcinski 2019-11-04 09:03:24 +01:00 committed by Daniel Baluta
parent 77918e1e89
commit 6984e86b15
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ struct comp_dev;
#define tracev_mux(__e, ...) \
tracev_event(TRACE_CLASS_MUX, __e, ##__VA_ARGS__)
#define tracev_mux_with_ids(comp_ptr, format, ...) \
#define tracev_mux_with_ids(comp_ptr, __e, ...) \
tracev_event_comp(TRACE_CLASS_MUX, comp_ptr, \
__e, ##__VA_ARGS__)