ring: fix namesize macro documentation block

'/**<' style comments apply to the previous member, which caused doxygen to
emit the RTE_RING_NAMESIZE documentation for RTE_RING_MZ_PREFIX.

Fixes: 38c9817ee1d8 ("mempool: adjust name size in related data types")
Cc: stable@dpdk.org

Signed-off-by: Gage Eads <gage.eads@intel.com>
This commit is contained in:
Gage Eads 2019-04-04 07:34:54 -05:00 committed by Thomas Monjalon
parent e75bc77f98
commit 97c48e71fc

View File

@ -57,7 +57,7 @@ enum rte_ring_queue_behavior {
};
#define RTE_RING_MZ_PREFIX "RG_"
/**< The maximum length of a ring name. */
/** The maximum length of a ring name. */
#define RTE_RING_NAMESIZE (RTE_MEMZONE_NAMESIZE - \
sizeof(RTE_RING_MZ_PREFIX) + 1)