diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-07-07 18:03:13 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-07-08 18:38:45 -0700 |
commit | 5879031423089b2e19b769f30fc618af742264c3 (patch) | |
tree | a5dc1560ed7e005dedffe1589cdb183fe6d162ed /net/tls/tls_toe.c | |
parent | 03957d84055e59235c7d57c95a37617bd3aa5646 (diff) |
tls: create an internal header
include/net/tls.h is getting a little long, and is probably hard
for driver authors to navigate. Split out the internals into a
header which will live under net/tls/. While at it move some
static inlines with a single user into the source files, add
a few tls_ prefixes and fix spelling of 'proccess'.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/tls/tls_toe.c')
-rw-r--r-- | net/tls/tls_toe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/tls/tls_toe.c b/net/tls/tls_toe.c index 7e1330f19165..825669e1ab47 100644 --- a/net/tls/tls_toe.c +++ b/net/tls/tls_toe.c @@ -38,6 +38,8 @@ #include <net/tls.h> #include <net/tls_toe.h> +#include "tls.h" + static LIST_HEAD(device_list); static DEFINE_SPINLOCK(device_spinlock); |