From: Jean Delvare Date: Wed, 20 Jan 2016 22:58:06 +0000 (-0800) Subject: lib/libcrc32c.c: fix build warning X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=290e0e0f2b54b2eed5018f921c585bb694f9e68a;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git lib/libcrc32c.c: fix build warning Fix the following build warning: lib/libcrc32c.c:42:5: warning: no previous prototype for "crc32c" [-Wmissing-prototypes] u32 crc32c(u32 crc, const void *address, unsigned int length) ^ Signed-off-by: Jean Delvare Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/libcrc32c.c b/lib/libcrc32c.c index 6a08ce7d6adc..31ce853fbfb1 100644 --- a/lib/libcrc32c.c +++ b/lib/libcrc32c.c @@ -36,6 +36,7 @@ #include #include #include +#include static struct crypto_shash *tfm;