summaryrefslogtreecommitdiff
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-05-27 16:23:44 +1000
commit4227f6f9c4928c9dd61e41d9cb906ba17df6dd85 (patch)
tree34c1defe4240cded722e91f7b81de4a6f6da55aa
parente99ec37d4dd69bd881119c04ad44172fd6298ac0 (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>
-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)