summaryrefslogtreecommitdiffstats
path: root/net/l2tp/l2tp_ppp.c
diff options
context:
space:
mode:
authorJames Chapman <jchapman@katalix.com>2024-08-07 07:54:45 +0100
committerDavid S. Miller <davem@davemloft.net>2024-08-11 04:38:49 +0100
commit168464c19e1ab7ddc5fb80d9c9560cfbcce6211d (patch)
tree2918b0f63aabedde9106845068d41598a1668e67 /net/l2tp/l2tp_ppp.c
parente2b1762cf32fb9be1e662ec1e8f3b8b36a9b293d (diff)
downloadlinux-168464c19e1ab7ddc5fb80d9c9560cfbcce6211d.tar.gz
linux-168464c19e1ab7ddc5fb80d9c9560cfbcce6211d.tar.bz2
linux-168464c19e1ab7ddc5fb80d9c9560cfbcce6211d.zip
l2tp: remove inline from functions in c sources
Update l2tp to remove the inline keyword from several functions in C sources, since this is now discouraged. Signed-off-by: James Chapman <jchapman@katalix.com> Signed-off-by: Tom Parkin <tparkin@katalix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp/l2tp_ppp.c')
-rw-r--r--net/l2tp/l2tp_ppp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/l2tp/l2tp_ppp.c b/net/l2tp/l2tp_ppp.c
index 9b4273fd518a..c25dd8e36074 100644
--- a/net/l2tp/l2tp_ppp.c
+++ b/net/l2tp/l2tp_ppp.c
@@ -149,7 +149,7 @@ static struct sock *pppol2tp_session_get_sock(struct l2tp_session *session)
/* Helpers to obtain tunnel/session contexts from sockets.
*/
-static inline struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
+static struct l2tp_session *pppol2tp_sock_to_session(struct sock *sk)
{
struct l2tp_session *session;