aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv
diff options
context:
space:
mode:
authorAntonio Quartulli <ordex@autistici.org>2011-05-18 10:47:23 -0400
committerSven Eckelmann <sven@narfation.org>2011-05-30 01:39:36 -0400
commit402196724816875d382099bedb09fdf1f57845bc (patch)
tree9f69305b77c222f1cf7f5d4cd8da87c5613d050c /net/batman-adv
parent44e92bc8d6366ebe477cab23199b9f50328d326a (diff)
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 <ordex@autistici.org> Acked-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv')
-rw-r--r--net/batman-adv/types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h
index fab70e8b16ee..65b32223d104 100644
--- a/net/batman-adv/types.h
+++ b/net/batman-adv/types.h
@@ -246,10 +246,10 @@ struct frag_packet_list_entry {
246}; 246};
247 247
248struct vis_info { 248struct vis_info {
249 unsigned long first_seen; 249 unsigned long first_seen;
250 struct list_head recv_list; 250 /* list of server-neighbors we received a vis-packet
251 /* list of server-neighbors we received a vis-packet 251 * from. we should not reply to them. */
252 * from. we should not reply to them. */ 252 struct list_head recv_list;
253 struct list_head send_list; 253 struct list_head send_list;
254 struct kref refcount; 254 struct kref refcount;
255 struct hlist_node hash_entry; 255 struct hlist_node hash_entry;