The patch titled Subject: lib/libcrc32c.c: fix build warning has been removed from the -mm tree. Its filename was libcrc32c-fix-build-warning.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Jean Delvare <jdelvare@xxxxxxx> Subject: 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 <jdelvare@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/libcrc32c.c | 1 + 1 file changed, 1 insertion(+) diff -puN lib/libcrc32c.c~libcrc32c-fix-build-warning lib/libcrc32c.c --- a/lib/libcrc32c.c~libcrc32c-fix-build-warning +++ a/lib/libcrc32c.c @@ -36,6 +36,7 @@ #include <linux/init.h> #include <linux/kernel.h> #include <linux/module.h> +#include <linux/crc32c.h> static struct crypto_shash *tfm; _ Patches currently in -mm which might be from jdelvare@xxxxxxx are -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html