summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-04-10 10:08:37 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-04-12 15:27:46 +1000
commit4656ea62b44e820db5c72cd26c34f8840e14e908 (patch)
treee15dba71d49fe077ce65f900f01da6b438b97459
parentdcd624fd3f846c545d5116b8c96734897241c450 (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)