blob: 72c92c396bb8d30298e4ff869bf4b5e92a366598 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_CRC_CCITT_H
3#define _LINUX_CRC_CCITT_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <linux/types.h>
6
7extern u16 const crc_ccitt_table[256];
Andrew Morton0d85adb2018-01-03 15:39:58 -08008extern u16 const crc_ccitt_false_table[256];
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10extern u16 crc_ccitt(u16 crc, const u8 *buffer, size_t len);
Andrew Morton0d85adb2018-01-03 15:39:58 -080011extern u16 crc_ccitt_false(u16 crc, const u8 *buffer, size_t len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13static inline u16 crc_ccitt_byte(u16 crc, const u8 c)
14{
15 return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff];
16}
17
Andrew Morton0d85adb2018-01-03 15:39:58 -080018static inline u16 crc_ccitt_false_byte(u16 crc, const u8 c)
19{
20 return (crc << 8) ^ crc_ccitt_false_table[(crc >> 8) ^ c];
21}
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#endif /* _LINUX_CRC_CCITT_H */