diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-10-03 11:18:57 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-04 14:07:07 -0700 |
commit | 08700dab816847d5e600ef263155fb04ea4b312d (patch) | |
tree | a35f6c3dc0353a439602363d1cc0c62af3d585c2 /net/tls/Makefile | |
parent | 16bed0e6ac07b1a0b3e9c33ec5e892bc7074a627 (diff) | |
download | linux-08700dab816847d5e600ef263155fb04ea4b312d.tar.gz linux-08700dab816847d5e600ef263155fb04ea4b312d.tar.bz2 linux-08700dab816847d5e600ef263155fb04ea4b312d.zip |
net/tls: move TOE-related code to a separate file
Move tls_hw_* functions to a new, separate source file
to avoid confusion with normal, non-TOE offload.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: John Hurley <john.hurley@netronome.com>
Reviewed-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tls/Makefile')
-rw-r--r-- | net/tls/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tls/Makefile b/net/tls/Makefile index ef0dc74ce8f9..322250e912db 100644 --- a/net/tls/Makefile +++ b/net/tls/Makefile @@ -5,6 +5,6 @@ obj-$(CONFIG_TLS) += tls.o -tls-y := tls_main.o tls_sw.o +tls-y := tls_main.o tls_sw.o tls_toe.o tls-$(CONFIG_TLS_DEVICE) += tls_device.o tls_device_fallback.o |