From: Wei Zhao Date: Mon, 5 Dec 2016 03:40:00 +0000 (+0800) Subject: mempool: remove a redundant word in comment X-Git-Tag: spdx-start~5300 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=580db2a5cee98f27206fbdcf6f22eaad5e74c8ab;p=dpdk.git mempool: remove a redundant word in comment There is a redundant repetition word "for" in comment line of the file rte_mempool.h after the definition of RTE_MEMPOOL_OPS_NAMESIZE. The word "for" appears twice in line 359 and 360. One of them is redundant, so delete it. Fixes: 449c49b93a6b ("mempool: support handler operations") Signed-off-by: Wei Zhao Acked-by: John McNamara Acked-by: Olivier Matz --- diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h index 440f3b1bac..911102b1be 100644 --- a/lib/librte_mempool/rte_mempool.h +++ b/lib/librte_mempool/rte_mempool.h @@ -357,7 +357,7 @@ void rte_mempool_check_cookies(const struct rte_mempool *mp, * Prototype for implementation specific data provisioning function. * * The function should provide the implementation specific memory for - * for use by the other mempool ops functions in a given mempool ops struct. + * use by the other mempool ops functions in a given mempool ops struct. * E.g. the default ops provides an instance of the rte_ring for this purpose. * it will most likely point to a different type of data structure, and * will be transparent to the application programmer.