Commit 974a6b20 authored by Sven Eckelmann's avatar Sven Eckelmann Committed by Simon Wunderlich

batman-adv: Fix kernel-doc for timer functions

The commit e99e88a9 ("treewide: setup_timer() -> timer_setup()")
changed the argument name and type of the timer function but didn't adjust
the kernel-doc of these functions.
Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
Acked-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarSimon Wunderlich <sw@simonwunderlich.de>
parent 198a62dd
...@@ -482,7 +482,7 @@ static void batadv_tp_reset_sender_timer(struct batadv_tp_vars *tp_vars) ...@@ -482,7 +482,7 @@ static void batadv_tp_reset_sender_timer(struct batadv_tp_vars *tp_vars)
/** /**
* batadv_tp_sender_timeout - timer that fires in case of packet loss * batadv_tp_sender_timeout - timer that fires in case of packet loss
* @arg: address of the related tp_vars * @t: address to timer_list inside tp_vars
* *
* If fired it means that there was packet loss. * If fired it means that there was packet loss.
* Switch to Slow Start, set the ss_threshold to half of the current cwnd and * Switch to Slow Start, set the ss_threshold to half of the current cwnd and
...@@ -1106,7 +1106,7 @@ static void batadv_tp_reset_receiver_timer(struct batadv_tp_vars *tp_vars) ...@@ -1106,7 +1106,7 @@ static void batadv_tp_reset_receiver_timer(struct batadv_tp_vars *tp_vars)
/** /**
* batadv_tp_receiver_shutdown - stop a tp meter receiver when timeout is * batadv_tp_receiver_shutdown - stop a tp meter receiver when timeout is
* reached without received ack * reached without received ack
* @arg: address of the related tp_vars * @t: address to timer_list inside tp_vars
*/ */
static void batadv_tp_receiver_shutdown(struct timer_list *t) static void batadv_tp_receiver_shutdown(struct timer_list *t)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment