mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Based on 2 normalized pattern(s): this source code is licensed under the gnu general public license version 2 see the file copying for more details this source code is licensed under general public license version 2 see extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 52 file(s). Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Enrico Weigelt <[email protected]> Reviewed-by: Allison Randal <[email protected]> Reviewed-by: Alexios Zavras <[email protected]> Cc: [email protected] Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
29 lines
540 B
C
29 lines
540 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* crc16.h - CRC-16 routine
|
|
*
|
|
* Implements the standard CRC-16:
|
|
* Width 16
|
|
* Poly 0x8005 (x^16 + x^15 + x^2 + 1)
|
|
* Init 0
|
|
*
|
|
* Copyright (c) 2005 Ben Gardner <[email protected]>
|
|
*/
|
|
|
|
#ifndef __CRC16_H
|
|
#define __CRC16_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
extern u16 const crc16_table[256];
|
|
|
|
extern u16 crc16(u16 crc, const u8 *buffer, size_t len);
|
|
|
|
static inline u16 crc16_byte(u16 crc, const u8 data)
|
|
{
|
|
return (crc >> 8) ^ crc16_table[(crc ^ data) & 0xff];
|
|
}
|
|
|
|
#endif /* __CRC16_H */
|
|
|