summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-06-07 10:09:58 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-06-17 18:21:12 +1000
commit46493347ca8ff1c30e796540f3c8f5fc1ebd7340 (patch)
tree23fb7d0a49b779d10f89b97cd92df19bfdbcdf2f /lib
parent8289f229b3f59f00c5eed9bf5aa9c4c40a03354b (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)