Skip to content

Commit

Permalink
lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: franciscofranco <[email protected]>
Signed-off-by: Francisco Franco <[email protected]>
  • Loading branch information
markus-oberhumer authored and franciscofranco committed Jun 29, 2014
1 parent 9009443 commit f4847d8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/decompress_unlzo.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/

#ifdef STATIC
#include "lzo/lzo1x_decompress.c"
#include "lzo/lzo1x_decompress_safe.c"
#else
#include <linux/decompress/unlzo.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion lib/lzo/Makefile
Original file line number Diff line number Diff line change
@@ -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
File renamed without changes.

0 comments on commit f4847d8

Please sign in to comment.