diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2012-07-10 06:55:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-11 02:13:45 -0400 |
commit | 2c53040f018b6c36a46eec75b9b937aaa5f78e6d (patch) | |
tree | f77d987c380f78daf40838688a5f49bb4ab065ee /net/batman-adv/main.h | |
parent | a55b138b1da3d25c04f66f8df03d659dfd46c950 (diff) |
net: Fix (nearly-)kernel-doc comments for various functions
Fix incorrect start markers, wrapped summary lines, missing section
breaks, incorrect separators, and some name mismatches.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/batman-adv/main.h')
-rw-r--r-- | net/batman-adv/main.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index b8d4ac17f001..5d8fa0757947 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h | |||
@@ -216,7 +216,8 @@ static inline int batadv_compare_eth(const void *data1, const void *data2) | |||
216 | return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0); | 216 | return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0); |
217 | } | 217 | } |
218 | 218 | ||
219 | /* has_timed_out - compares current time (jiffies) and timestamp + timeout | 219 | /** |
220 | * has_timed_out - compares current time (jiffies) and timestamp + timeout | ||
220 | * @timestamp: base value to compare with (in jiffies) | 221 | * @timestamp: base value to compare with (in jiffies) |
221 | * @timeout: added to base value before comparing (in milliseconds) | 222 | * @timeout: added to base value before comparing (in milliseconds) |
222 | * | 223 | * |