Skip to content

Commit 290e0e0

Browse files
jdelvaretorvalds
authored andcommitted
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 <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 9fa6860 commit 290e0e0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/libcrc32c.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include <linux/init.h>
3737
#include <linux/kernel.h>
3838
#include <linux/module.h>
39+
#include <linux/crc32c.h>
3940

4041
static struct crypto_shash *tfm;
4142

0 commit comments

Comments
 (0)