ethdev: move some comments
authorHelin Zhang <helin.zhang@intel.com>
Thu, 22 Jan 2015 07:36:56 +0000 (15:36 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 2 Feb 2015 15:13:54 +0000 (16:13 +0100)
Added code style fixes.

Signed-off-by: Helin Zhang <helin.zhang@intel.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
lib/librte_ether/rte_eth_ctrl.h

index 5d9c387..4b3c5fc 100644 (file)
@@ -62,8 +62,8 @@ enum rte_filter_type {
  * Generic operations on filters
  */
 enum rte_filter_op {
+       /** used to check whether the type filter is supported */
        RTE_ETH_FILTER_NOP = 0,
-       /**< used to check whether the type filter is supported */
        RTE_ETH_FILTER_ADD,      /**< add filter entry */
        RTE_ETH_FILTER_UPDATE,   /**< update filter entry */
        RTE_ETH_FILTER_DELETE,   /**< delete filter entry */
@@ -75,16 +75,15 @@ enum rte_filter_op {
        RTE_ETH_FILTER_OP_MAX
 };
 
-/**
+/*
  * MAC filter type
  */
 enum rte_mac_filter_type {
        RTE_MAC_PERFECT_MATCH = 1, /**< exact match of MAC addr. */
-       RTE_MACVLAN_PERFECT_MATCH,
-       /**< exact match of MAC addr and VLAN ID. */
+       RTE_MACVLAN_PERFECT_MATCH, /**< exact match of MAC addr and VLAN ID. */
        RTE_MAC_HASH_MATCH, /**< hash match of MAC addr. */
+       /** hash match of MAC addr and exact match of VLAN ID. */
        RTE_MACVLAN_HASH_MATCH,
-       /**< hash match of MAC addr and exact match of VLAN ID. */
 };
 
 /**