]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c
authorMarkus F.X.J. Oberhumer <markus@oberhumer.com>
Mon, 13 Aug 2012 15:24:24 +0000 (17:24 +0200)
committerMarkus F.X.J. Oberhumer <markus@oberhumer.com>
Wed, 20 Feb 2013 18:36:00 +0000 (19:36 +0100)
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>
lib/decompress_unlzo.c
lib/lzo/Makefile
lib/lzo/lzo1x_decompress_safe.c [moved from lib/lzo/lzo1x_decompress.c with 100% similarity]

index 4531294fa62f2cb5de592178ddca2c0afc223558..960183d4258f2bffda4dfa421525d04cdd40a949 100644 (file)
@@ -31,7 +31,7 @@
  */
 
 #ifdef STATIC
-#include "lzo/lzo1x_decompress.c"
+#include "lzo/lzo1x_decompress_safe.c"
 #else
 #include <linux/decompress/unlzo.h>
 #endif
index e764116ea12d3869da9fbd5c42be3c71c7325506..f0f7d7ca2b83dd5cbb15e23e69c276d3281eb8b9 100644 (file)
@@ -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