summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-05-23 10:38:22 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-06-05 14:52:44 +1000
commit13cc0d7028e38f1a151f98f5981f6469f459248b (patch)
tree248c5766f38c48964b3bd6ac53ca18f4c3d275a4 /lib
parentc8ce417386a31838d7d8ba62e6b50ecbb848b6e1 (diff)
lib-add-lz4-compressor-module-fix
make lz4_compresshcctx() static Cc: Chanho Min <chanho.min@lge.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4/lz4hc_compress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4/lz4hc_compress.c b/lib/lz4/lz4hc_compress.c
index a9a9c2a00c5c..eb1a74f5e368 100644
--- a/lib/lz4/lz4hc_compress.c
+++ b/lib/lz4/lz4hc_compress.c
@@ -314,7 +314,7 @@ static inline int lz4_encodesequence(const u8 **ip, u8 **op, const u8 **anchor,
return 0;
}
-int lz4_compresshcctx(struct lz4hc_data *ctx,
+static int lz4_compresshcctx(struct lz4hc_data *ctx,
const char *source,
char *dest,
int isize)