From: Ben Dooks (Codethink) Date: Thu, 23 Jan 2020 17:01:35 +0000 (+0800) Subject: lib: crc64: include for 'crc64_be' X-Git-Tag: v5.6-rc1~187^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e0c12316d8a645e7b1880e135837ee78d18aed9;p=thirdparty%2Fkernel%2Flinux.git lib: crc64: include for 'crc64_be' The crc64_be() is declared in so include this where the symbol is defined to avoid the following warning: lib/crc64.c:43:12: warning: symbol 'crc64_be' was not declared. Should it be static? Signed-off-by: Ben Dooks (Codethink) Reviewed-by: Andy Shevchenko Signed-off-by: Coly Li Signed-off-by: Jens Axboe --- diff --git a/lib/crc64.c b/lib/crc64.c index 0ef8ae6ac0479..f8928ce282808 100644 --- a/lib/crc64.c +++ b/lib/crc64.c @@ -28,6 +28,7 @@ #include #include +#include #include "crc64table.h" MODULE_DESCRIPTION("CRC64 calculations");