diff mbox series

[1/3] mptcp: fix "fn parameter not described" warning

Message ID 20200324165709.2024557-2-matthieu.baerts@tessares.net
State Accepted, archived
Delegated to: Matthieu Baerts
Headers show
Series mptcp: fix "fn parameter not described" warnings | expand

Commit Message

Matthieu Baerts March 24, 2020, 4:57 p.m. UTC
Obtained with:

  $ make W=1 net/mptcp/token.o
  net/mptcp/token.c:153: warning: Function parameter or member 'token' not described in 'mptcp_token_get_sock'

Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net>
---

Notes:
    to be squashed in "mptcp: Add handling of incoming MP_JOIN requests"

 net/mptcp/token.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/net/mptcp/token.c b/net/mptcp/token.c
index d0e0585fb2ff..129a5ad1bc35 100644
--- a/net/mptcp/token.c
+++ b/net/mptcp/token.c
@@ -142,7 +142,7 @@  int mptcp_token_new_accept(u32 token, struct sock *conn)
 
 /**
  * mptcp_token_get_sock - retrieve mptcp connection sock using its token
- * @token - token of the mptcp connection to retrieve
+ * @token: token of the mptcp connection to retrieve
  *
  * This function returns the mptcp connection structure with the given token.
  * A reference count on the mptcp socket returned is taken.