diff mbox

api: classification: alignment correction of function definition

Message ID 1449492178-3915-1-git-send-email-bala.manoharan@linaro.org
State New
Headers show

Commit Message

Balasubramanian Manoharan Dec. 7, 2015, 12:42 p.m. UTC
Adds additional space before function definition

Signed-off-by: Balasubramanian Manoharan <bala.manoharan@linaro.org>
---
 include/odp/api/classification.h | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)
diff mbox

Patch

diff --git a/include/odp/api/classification.h b/include/odp/api/classification.h
index 725e1ab..f420c19 100644
--- a/include/odp/api/classification.h
+++ b/include/odp/api/classification.h
@@ -379,29 +379,29 @@  int odp_pktio_pmr_match_set_cos(odp_pmr_set_t pmr_set_id, odp_pktio_t src_pktio,
 				odp_cos_t dst_cos);
 
 /**
-* Assigns a packet pool for a specific class of service.
-* All the packets belonging to the given class of service will
-* be allocated from the assigned packet pool.
-* The packet pool associated with class of service will supersede the
-* packet pool associated with the pktio interface.
-*
-* @param	cos_id	class of service handle
-* @param	pool_id	packet pool handle
-*
-* @retval	0 on success
-* @retval	<0 on failure
-*/
+ * Assigns a packet pool for a specific class of service.
+ * All the packets belonging to the given class of service will
+ * be allocated from the assigned packet pool.
+ * The packet pool associated with class of service will supersede the
+ * packet pool associated with the pktio interface.
+ *
+ * @param	cos_id	class of service handle
+ * @param	pool_id	Packet pool handle
+ *
+ * @retval	0 on success
+ * @retval	<0 on failure
+ */
 int odp_cls_cos_pool_set(odp_cos_t cos_id, odp_pool_t pool_id);
 
 /**
-* Get the pool associated with the given class of service
-*
-* @param	cos_id	class of service handle
-*
-* @retval	pool handle of the associated pool
-* @retval	ODP_POOL_INVALID if no associated pool found or
-*		incase of an error
-*/
+ * Get the pool associated with the given class of service
+ *
+ * @param	cos_id	class of service handle
+ *
+ * @retval	pool handle of the associated pool
+ * @retval	ODP_POOL_INVALID if no associated pool found or
+ *		incase of an error
+ */
 odp_pool_t odp_cls_cos_pool(odp_cos_t cos_id);
 
 /**