hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/lib/crc64.c
....@@ -4,7 +4,7 @@
44 *
55 * This is a basic crc64 implementation following ECMA-182 specification,
66 * which can be found from,
7
- * http://www.ecma-international.org/publications/standards/Ecma-182.htm
7
+ * https://www.ecma-international.org/publications/standards/Ecma-182.htm
88 *
99 * Dr. Ross N. Williams has a great document to introduce the idea of CRC
1010 * algorithm, here the CRC64 code is also inspired by the table-driven
....@@ -28,6 +28,7 @@
2828
2929 #include <linux/module.h>
3030 #include <linux/types.h>
31
+#include <linux/crc64.h>
3132 #include "crc64table.h"
3233
3334 MODULE_DESCRIPTION("CRC64 calculations");