diff options
author | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2012-08-13 17:24:24 +0200 |
---|---|---|
committer | Simon Shields <keepcalm444@gmail.com> | 2016-06-12 21:20:19 +1000 |
commit | 25925d66273ddbaa96a46bd35a817c8742f41309 (patch) | |
tree | fca12c4531ee59011c5ca7179ca8f54bea9772b8 /lib/lzo/Makefile | |
parent | 4698b1b9e737365e206f1ef55a864d8e205fe8f3 (diff) | |
download | kernel_samsung_smdk4412-25925d66273ddbaa96a46bd35a817c8742f41309.zip kernel_samsung_smdk4412-25925d66273ddbaa96a46bd35a817c8742f41309.tar.gz kernel_samsung_smdk4412-25925d66273ddbaa96a46bd35a817c8742f41309.tar.bz2 |
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.
Change-Id: I482ee415d43c5aaa77d34946ae1fa0af5465b007
Signed-off-by: Markus F.X.J. Oberhumer <markus@oberhumer.com>
Diffstat (limited to 'lib/lzo/Makefile')
-rw-r--r-- | lib/lzo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lzo/Makefile b/lib/lzo/Makefile index e764116..f0f7d7c 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 |