.. | .. |
---|
4 | 4 | * |
---|
5 | 5 | * This is a basic crc64 implementation following ECMA-182 specification, |
---|
6 | 6 | * 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 |
---|
8 | 8 | * |
---|
9 | 9 | * Dr. Ross N. Williams has a great document to introduce the idea of CRC |
---|
10 | 10 | * algorithm, here the CRC64 code is also inspired by the table-driven |
---|
.. | .. |
---|
28 | 28 | |
---|
29 | 29 | #include <linux/module.h> |
---|
30 | 30 | #include <linux/types.h> |
---|
| 31 | +#include <linux/crc64.h> |
---|
31 | 32 | #include "crc64table.h" |
---|
32 | 33 | |
---|
33 | 34 | MODULE_DESCRIPTION("CRC64 calculations"); |
---|