Skip to content
Snippets Groups Projects
Commit b6bec26c authored by Markus F.X.J. Oberhumer's avatar Markus F.X.J. Oberhumer
Browse files

lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c


Rename the source file to match the function name and thereby
also make room for a possible future even slightly faster
"non-safe" decompressor version.

Signed-off-by: default avatarMarkus F.X.J. Oberhumer <markus@oberhumer.com>
parent 19f949f5
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
*/ */
#ifdef STATIC #ifdef STATIC
#include "lzo/lzo1x_decompress.c" #include "lzo/lzo1x_decompress_safe.c"
#else #else
#include <linux/decompress/unlzo.h> #include <linux/decompress/unlzo.h>
#endif #endif
......
lzo_compress-objs := lzo1x_compress.o lzo_compress-objs := lzo1x_compress.o
lzo_decompress-objs := lzo1x_decompress.o lzo_decompress-objs := lzo1x_decompress_safe.o
obj-$(CONFIG_LZO_COMPRESS) += lzo_compress.o obj-$(CONFIG_LZO_COMPRESS) += lzo_compress.o
obj-$(CONFIG_LZO_DECOMPRESS) += lzo_decompress.o obj-$(CONFIG_LZO_DECOMPRESS) += lzo_decompress.o
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment