aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2015-04-15 13:52:26 -0400
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-04-17 16:13:17 +0300
commit2f02626f02aaab4d7e3fb6fbb0a6f1040baaeb03 (patch)
treecd22b83323d23f95acb1c68dea2651bb4a18be5d /helper
parenta4152889eb9ae2b5f9dd03f24c73a4fd5a3102ec (diff)
helper: doxygen: icmp convert to c comments
The code level comments describing the groupings were polluting the real defintions seen in the final output Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'helper')
-rw-r--r--helper/include/odp/helper/icmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/helper/include/odp/helper/icmp.h b/helper/include/odp/helper/icmp.h
index f6adc709e..476af0230 100644
--- a/helper/include/odp/helper/icmp.h
+++ b/helper/include/odp/helper/icmp.h
@@ -58,7 +58,7 @@ typedef struct ODP_PACKED {
#define ICMP_ADDRESSREPLY 18 /**< Address Mask Reply */
#define NR_ICMP_TYPES 18 /**< Number of icmp types */
-/** Codes for UNREACH. */
+/* Codes for UNREACH. */
#define ICMP_NET_UNREACH 0 /**< Network Unreachable */
#define ICMP_HOST_UNREACH 1 /**< Host Unreachable */
#define ICMP_PROT_UNREACH 2 /**< Protocol Unreachable */
@@ -78,13 +78,13 @@ typedef struct ODP_PACKED {
#define NR_ICMP_UNREACH 15 /**< instead of hardcoding
immediate value */
-/** Codes for REDIRECT. */
+/* Codes for REDIRECT. */
#define ICMP_REDIR_NET 0 /**< Redirect Net */
#define ICMP_REDIR_HOST 1 /**< Redirect Host */
#define ICMP_REDIR_NETTOS 2 /**< Redirect Net for TOS */
#define ICMP_REDIR_HOSTTOS 3 /**< Redirect Host for TOS */
-/** Codes for TIME_EXCEEDED. */
+/* Codes for TIME_EXCEEDED. */
#define ICMP_EXC_TTL 0 /**< TTL count exceeded */
#define ICMP_EXC_FRAGTIME 1 /**< Fragment Reass time
exceeded*/