eal: fix doxygen comments for UUID

Fix following syntax error reported by doxygen 1.9.5 version.

lib/eal/include/rte_uuid.h:89: error: RTE_UUID_STRLEN
has @param documentation sections but no arguments
(warning treated as error, aborting now)

Fixes: 6bc67c497a ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
This commit is contained in:
Jerin Jacob 2022-11-09 20:24:10 +05:30 committed by David Marchand
parent 10d9e91a76
commit 61c7dfe75a

View File

@ -37,6 +37,9 @@ typedef unsigned char rte_uuid_t[16];
((e) >> 8) & 0xff, (e) & 0xff \
}
/** UUID string length */
#define RTE_UUID_STRLEN (36 + 1)
/**
* Test if UUID is all zeros.
*
@ -95,7 +98,6 @@ int rte_uuid_parse(const char *in, rte_uuid_t uu);
* @param len
* Sizeof the available string buffer
*/
#define RTE_UUID_STRLEN (36 + 1)
void rte_uuid_unparse(const rte_uuid_t uu, char *out, size_t len);
#ifdef __cplusplus