diff options
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/842.c | 4 | ||||
| -rw-r--r-- | crypto/lz4.c | 4 | ||||
| -rw-r--r-- | crypto/lz4hc.c | 4 | ||||
| -rw-r--r-- | crypto/lzo-rle.c | 4 | ||||
| -rw-r--r-- | crypto/lzo.c | 4 |
5 files changed, 0 insertions, 20 deletions
diff --git a/crypto/842.c b/crypto/842.c index 5fb37a92598923..881945d44328f8 100644 --- a/crypto/842.c +++ b/crypto/842.c @@ -23,10 +23,6 @@ #include <linux/module.h> #include <linux/sw842.h> -struct crypto842_ctx { - void *wmem; /* working memory for compress */ -}; - static void *crypto842_alloc_ctx(void) { void *ctx; diff --git a/crypto/lz4.c b/crypto/lz4.c index 82588607fb2ee1..9661ed01692fea 100644 --- a/crypto/lz4.c +++ b/crypto/lz4.c @@ -12,10 +12,6 @@ #include <linux/lz4.h> #include <crypto/internal/scompress.h> -struct lz4_ctx { - void *lz4_comp_mem; -}; - static void *lz4_alloc_ctx(void) { void *ctx; diff --git a/crypto/lz4hc.c b/crypto/lz4hc.c index 997e76c0183a66..a637fddc1ccd89 100644 --- a/crypto/lz4hc.c +++ b/crypto/lz4hc.c @@ -10,10 +10,6 @@ #include <linux/vmalloc.h> #include <linux/lz4.h> -struct lz4hc_ctx { - void *lz4hc_comp_mem; -}; - static void *lz4hc_alloc_ctx(void) { void *ctx; diff --git a/crypto/lzo-rle.c b/crypto/lzo-rle.c index b1350ae278b8f4..e7efcf10717990 100644 --- a/crypto/lzo-rle.c +++ b/crypto/lzo-rle.c @@ -9,10 +9,6 @@ #include <linux/module.h> #include <linux/slab.h> -struct lzorle_ctx { - void *lzorle_comp_mem; -}; - static void *lzorle_alloc_ctx(void) { void *ctx; diff --git a/crypto/lzo.c b/crypto/lzo.c index dfe5a07ca35fc1..f1b36a1ca6f6bc 100644 --- a/crypto/lzo.c +++ b/crypto/lzo.c @@ -9,10 +9,6 @@ #include <linux/module.h> #include <linux/slab.h> -struct lzo_ctx { - void *lzo_comp_mem; -}; - static void *lzo_alloc_ctx(void) { void *ctx; |
