diff options
author | Andrew Lunn <andrew@lunn.ch> | 2020-07-13 01:15:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-13 17:20:39 -0700 |
commit | d0b1101bb5c1224881bb58460311d458ff1350d0 (patch) | |
tree | 9d838cbb97db513476bc82ca43aeb6d4feb3c0ed /net/dccp/ccids | |
parent | 8842500dd056b8ef9da77ba2bfc3275fd7e0a98f (diff) | |
download | linux-d0b1101bb5c1224881bb58460311d458ff1350d0.tar.gz linux-d0b1101bb5c1224881bb58460311d458ff1350d0.tar.bz2 linux-d0b1101bb5c1224881bb58460311d458ff1350d0.zip |
net: dccp: kerneldoc fixes
Simple fixes which require no deep knowledge of the code.
Cc: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids')
-rw-r--r-- | net/dccp/ccids/lib/packet_history.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/dccp/ccids/lib/packet_history.c b/net/dccp/ccids/lib/packet_history.c index 0bef57b908fb..af08e2df7108 100644 --- a/net/dccp/ccids/lib/packet_history.c +++ b/net/dccp/ccids/lib/packet_history.c @@ -365,6 +365,7 @@ void tfrc_rx_hist_purge(struct tfrc_rx_hist *h) /** * tfrc_rx_hist_rtt_last_s - reference entry to compute RTT samples against + * @h: The non-empty RX history object */ static inline struct tfrc_rx_hist_entry * tfrc_rx_hist_rtt_last_s(const struct tfrc_rx_hist *h) @@ -374,6 +375,7 @@ static inline struct tfrc_rx_hist_entry * /** * tfrc_rx_hist_rtt_prev_s - previously suitable (wrt rtt_last_s) RTT-sampling entry + * @h: The non-empty RX history object */ static inline struct tfrc_rx_hist_entry * tfrc_rx_hist_rtt_prev_s(const struct tfrc_rx_hist *h) |