From: Antonio Quartulli Date: Wed, 18 May 2011 14:47:23 +0000 (+0200) Subject: batman-adv: a multiline comment should precede the variable it is describing X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=402196724816875d382099bedb09fdf1f57845bc;p=~shefty%2Frdma-dev.git batman-adv: a multiline comment should precede the variable it is describing This comment has been wrongly put after the variable it refers to and was also bad indented Signed-off-by: Antonio Quartulli Acked-by: Sven Eckelmann Signed-off-by: Sven Eckelmann --- diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h index fab70e8b16e..65b32223d10 100644 --- a/net/batman-adv/types.h +++ b/net/batman-adv/types.h @@ -246,10 +246,10 @@ struct frag_packet_list_entry { }; struct vis_info { - unsigned long first_seen; - struct list_head recv_list; - /* list of server-neighbors we received a vis-packet - * from. we should not reply to them. */ + unsigned long first_seen; + /* list of server-neighbors we received a vis-packet + * from. we should not reply to them. */ + struct list_head recv_list; struct list_head send_list; struct kref refcount; struct hlist_node hash_entry;