diff mbox

[1/3] helper: doxygen: icmp convert to c comments

Message ID 1429120348-8213-1-git-send-email-mike.holmes@linaro.org
State Accepted
Commit 39c80ed6f675a5d0306fbc738610b410025cc89b
Headers show

Commit Message

Mike Holmes April 15, 2015, 5:52 p.m. UTC
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>
---
 helper/include/odp/helper/icmp.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Maxim Uvarov April 17, 2015, 1:29 p.m. UTC | #1
Merged,
all 3.

Maxim.

On 04/15/15 20:52, Mike Holmes wrote:
> 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>
> ---
>   helper/include/odp/helper/icmp.h | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/helper/include/odp/helper/icmp.h b/helper/include/odp/helper/icmp.h
> index f6adc70..476af02 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*/
diff mbox

Patch

diff --git a/helper/include/odp/helper/icmp.h b/helper/include/odp/helper/icmp.h
index f6adc70..476af02 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*/