summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-04-26 10:58:51 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-04-26 17:33:11 +1000
commitce2888460b96152cbb7cfc87af16f8fc1ac2d51a (patch)
treef6cce0bed4e68f367ab086258085358c6fb6193a
parent83af904a57107d370d100e2d755475db19e66145 (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)