From e6e6440d33c8ab11750c046e1519c09f6268dd09 Mon Sep 17 00:00:00 2001
From: Thomas Monjalon <thomas.monjalon@6wind.com>
Date: Wed, 4 Nov 2015 11:50:36 +0100
Subject: [PATCH] doc: fix doxygen syntax of some comments

Some comments have a wrong space between /** and <.
Seen with
	git grep '\*\* <'

Reported-by: David Marchand <david.marchand@6wind.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
 drivers/net/fm10k/fm10k.h                      | 2 +-
 lib/librte_eal/common/eal_internal_cfg.h       | 2 +-
 lib/librte_eal/common/include/rte_memzone.h    | 2 +-
 lib/librte_eal/linuxapp/xen_dom0/dom0_mm_dev.h | 2 +-
 lib/librte_ether/rte_eth_ctrl.h                | 8 ++++----
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/net/fm10k/fm10k.h b/drivers/net/fm10k/fm10k.h
index 5ed967cbc2..754aa6a47c 100644
--- a/drivers/net/fm10k/fm10k.h
+++ b/drivers/net/fm10k/fm10k.h
@@ -232,7 +232,7 @@ struct fm10k_tx_queue {
 	uint32_t txq_flags; /* Holds flags for this TXq */
 	uint16_t nb_desc;
 	uint8_t port_id;
-	uint8_t tx_deferred_start; /** < don't start this queue in dev start. */
+	uint8_t tx_deferred_start; /** don't start this queue in dev start. */
 	uint16_t queue_id;
 };
 
diff --git a/lib/librte_eal/common/eal_internal_cfg.h b/lib/librte_eal/common/eal_internal_cfg.h
index 6d071c771e..5f1367eb7e 100644
--- a/lib/librte_eal/common/eal_internal_cfg.h
+++ b/lib/librte_eal/common/eal_internal_cfg.h
@@ -64,7 +64,7 @@ struct internal_config {
 	volatile unsigned force_nchannel; /**< force number of channels */
 	volatile unsigned force_nrank;    /**< force number of ranks */
 	volatile unsigned no_hugetlbfs;   /**< true to disable hugetlbfs */
-	unsigned hugepage_unlink;         /** < true to unlink backing files */
+	unsigned hugepage_unlink;         /**< true to unlink backing files */
 	volatile unsigned xen_dom0_support; /**< support app running on Xen Dom0*/
 	volatile unsigned no_pci;         /**< true to disable PCI */
 	volatile unsigned no_hpet;        /**< true to disable HPET */
diff --git a/lib/librte_eal/common/include/rte_memzone.h b/lib/librte_eal/common/include/rte_memzone.h
index 6a92222410..53f4232ef0 100644
--- a/lib/librte_eal/common/include/rte_memzone.h
+++ b/lib/librte_eal/common/include/rte_memzone.h
@@ -92,7 +92,7 @@ struct rte_memzone {
 	int32_t socket_id;                /**< NUMA socket ID. */
 
 	uint32_t flags;                   /**< Characteristics of this memzone. */
-	uint32_t memseg_id;             /** <store the memzone is from which memseg. */
+	uint32_t memseg_id;               /**< Memseg it belongs. */
 } __attribute__((__packed__));
 
 /**
diff --git a/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_dev.h b/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_dev.h
index a9dd0d2678..9d5ffb2227 100644
--- a/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_dev.h
+++ b/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_dev.h
@@ -69,7 +69,7 @@
 #define MAX_EXCHANGE_FAIL_TIME 5  /**< Maximum times of allowing exchange fail .*/
 #define MAX_MEMBLOCK_SIZE (2 * DOM0_MEMBLOCK_SIZE)
 #define MAX_NUM_ORDER     (DOM0_CONTIG_NUM_ORDER + 1)
-#define SIZE_PER_BLOCK    2       /** < size of per memory block(2MB)).*/
+#define SIZE_PER_BLOCK    2       /**< Size of memory block (2MB).*/
 
 /**
  * A structure describing the private information for a dom0 device.
diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h
index f71669c3a6..56dd7ae9a9 100644
--- a/lib/librte_ether/rte_eth_ctrl.h
+++ b/lib/librte_ether/rte_eth_ctrl.h
@@ -291,8 +291,8 @@ struct rte_eth_tunnel_filter_conf {
 
 	uint16_t filter_type;   /**< Filter type. */
 	enum rte_eth_tunnel_type tunnel_type; /**< Tunnel Type. */
-	uint32_t tenant_id;     /** < Tenant number. */
-	uint16_t queue_id;      /** < queue number. */
+	uint32_t tenant_id;     /**< Tenant number. */
+	uint16_t queue_id;      /**< Queue number. */
 };
 
 /**
@@ -315,8 +315,8 @@ struct rte_eth_global_cfg {
 	} cfg;
 };
 
-#define RTE_ETH_FDIR_MAX_FLEXLEN 16  /** < Max length of flexbytes. */
-#define RTE_ETH_INSET_SIZE_MAX   128 /** < Max length of input set. */
+#define RTE_ETH_FDIR_MAX_FLEXLEN 16  /**< Max length of flexbytes. */
+#define RTE_ETH_INSET_SIZE_MAX   128 /**< Max length of input set. */
 
 /**
  * Input set fields for Flow Director and Hash filters
-- 
2.39.5