trace: doc: complete parameter documentation

Corrected doc format and provided doc for missing parameters
of the trace_dev_ macros.

Signed-off-by: Marcin Maka <marcin.maka@linux.intel.com>
This commit is contained in:
Marcin Maka 2020-03-10 17:36:53 +01:00
parent 0d79936c27
commit 10191131e7
1 changed files with 7 additions and 5 deletions

View File

@ -422,11 +422,13 @@ do { \
/** \brief Trace from a device on err level.
*
* \param class Trace class, one of TRACE_CLASS_...
* \param get_id_m Macro that can retrieve device's id0 from the dev
* \param get_subid_m Macro that can retrieve device's id1 from the dev
* \param dev Device
* \param fmt Format followed by parameters
* @param class Trace class, one of TRACE_CLASS_...
* @param get_uid_m Macro that can retrieve device's uid from the dev
* @param get_id_m Macro that can retrieve device's id0 from the dev
* @param get_subid_m Macro that can retrieve device's id1 from the dev
* @param dev Device
* @param fmt Format followed by parameters
* @param ... Parameters
*/
#define trace_dev_err(class, get_uid_m, get_id_m, get_subid_m, dev, fmt, ...) \
trace_error_with_ids(class, get_uid_m(dev), get_id_m(dev), \