Browse Source

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: Markus F.X.J. Oberhumer <markus@oberhumer.com>
Markus F.X.J. Oberhumer 13 years ago
parent
commit
b6bec26cea
3 changed files with 2 additions and 2 deletions
  1. 1 1
      lib/decompress_unlzo.c
  2. 1 1
      lib/lzo/Makefile
  3. 0 0
      lib/lzo/lzo1x_decompress_safe.c

+ 1 - 1
lib/decompress_unlzo.c

@@ -31,7 +31,7 @@
  */
 
 #ifdef STATIC
-#include "lzo/lzo1x_decompress.c"
+#include "lzo/lzo1x_decompress_safe.c"
 #else
 #include <linux/decompress/unlzo.h>
 #endif

+ 1 - 1
lib/lzo/Makefile

@@ -1,5 +1,5 @@
 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_DECOMPRESS) += lzo_decompress.o

+ 0 - 0
lib/lzo/lzo1x_decompress.c → lib/lzo/lzo1x_decompress_safe.c