aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoralexlartsev19 <alexlartsev19@gmail.com>2017-04-14 19:15:18 +0300
committerMister Oyster <oysterized@gmail.com>2017-09-26 19:35:46 +0200
commit381a36ec93103b31b8dff83fe62fb9eb942bde57 (patch)
tree5ef6aeed599adce771dd822bd42fbb5eab50c818 /include
parent9fbef1df22dcf1628c576a2b9ad5ac2a37ce823d (diff)
lz4k: Remove lz4k module
Diffstat (limited to 'include')
-rw-r--r--include/linux/lz4k.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/linux/lz4k.h b/include/linux/lz4k.h
deleted file mode 100644
index e31c5042f..000000000
--- a/include/linux/lz4k.h
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#ifndef __LZ4K_H__
-#define __LZ4K_H__
-
-#include <linux/types.h>
-#include <linux/lzo.h>
-
-#define LZ4K_TAG 1261722188 /* "LZ4K" */
-
-#ifndef CONFIG_64BIT
-#define LZ4K_MEM_COMPRESS LZO1X_MEM_COMPRESS
-#else
-#define LZ4K_MEM_COMPRESS (LZO1X_MEM_COMPRESS << 1)
-#endif
-
-int lz4k_compress(const unsigned char *src, size_t src_len,
- unsigned char *dst, size_t *dst_len, void *wrkmem);
-
-int lz4k_decompress_safe(const unsigned char *src, size_t src_len,
- unsigned char *dst, size_t *dst_len);
-
-#ifdef CONFIG_UBIFS_FS
-int lz4k_decompress_ubifs(const unsigned char *src, size_t src_len,
- unsigned char *dst, size_t *dst_len);
-#endif /* CONFIG_UBIFS_FS */
-
-#endif /* __LZ4K_H__ */