From: Markus F.X.J. Oberhumer Date: Mon, 13 Aug 2012 15:24:24 +0000 (+0200) Subject: lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c X-Git-Tag: v3.2.61~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d83ff0c1d743320709de6522eff9e814abb041e8;p=thirdparty%2Fkernel%2Fstable.git lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c commit b6bec26cea948148a9420e7a0ac337f925de49e7 upstream. 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 Signed-off-by: Ben Hutchings --- diff --git a/lib/decompress_unlzo.c b/lib/decompress_unlzo.c index 5a7a2adf4c4c2..26f89ad03304c 100644 --- a/lib/decompress_unlzo.c +++ b/lib/decompress_unlzo.c @@ -31,7 +31,7 @@ */ #ifdef STATIC -#include "lzo/lzo1x_decompress.c" +#include "lzo/lzo1x_decompress_safe.c" #else #include #endif diff --git a/lib/lzo/Makefile b/lib/lzo/Makefile index e764116ea12d3..f0f7d7ca2b83d 100644 --- a/lib/lzo/Makefile +++ b/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 diff --git a/lib/lzo/lzo1x_decompress.c b/lib/lzo/lzo1x_decompress_safe.c similarity index 100% rename from lib/lzo/lzo1x_decompress.c rename to lib/lzo/lzo1x_decompress_safe.c