summaryrefslogtreecommitdiffstats
path: root/lib/lz4/lz4_compress.c
diff options
context:
space:
mode:
authorRichard Laager2013-08-23 01:35:47 +0200
committerLinus Torvalds2013-08-23 18:51:22 +0200
commitee8a99bdb47f32327bdfaffe35b900ca7161ba4e (patch)
treeb5f9789be3fbbe01ffde0b9118a5da1b2f98031a /lib/lz4/lz4_compress.c
parentmemcg: get rid of swapaccount leftovers (diff)
downloadkernel-qcow2-linux-ee8a99bdb47f32327bdfaffe35b900ca7161ba4e.tar.gz
kernel-qcow2-linux-ee8a99bdb47f32327bdfaffe35b900ca7161ba4e.tar.xz
kernel-qcow2-linux-ee8a99bdb47f32327bdfaffe35b900ca7161ba4e.zip
lib/lz4: correct the LZ4 license
The LZ4 code is listed as using the "BSD 2-Clause License". Signed-off-by: Richard Laager <rlaager@wiktel.com> Acked-by: Kyungsik Lee <kyungsik.lee@lge.com> Cc: Chanho Min <chanho.min@lge.com> Cc: Richard Yao <ryao@gentoo.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> [ The 2-clause BSD can be just converted into GPL, but that's rude and pointless, so don't do it - Linus ] Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/lz4/lz4_compress.c')
-rw-r--r--lib/lz4/lz4_compress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4/lz4_compress.c b/lib/lz4/lz4_compress.c
index fd94058bd7f9..28321d8f75ef 100644
--- a/lib/lz4/lz4_compress.c
+++ b/lib/lz4/lz4_compress.c
@@ -437,7 +437,7 @@ int lz4_compress(const unsigned char *src, size_t src_len,
exit:
return ret;
}
-EXPORT_SYMBOL_GPL(lz4_compress);
+EXPORT_SYMBOL(lz4_compress);
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("Dual BSD/GPL");
MODULE_DESCRIPTION("LZ4 compressor");