Blame view

include/linux/crc4.h 192 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
0cbaa4484   Jeremy Kerr   lib: Add crc4 module
2
3
4
5
6
7
8
9
  #ifndef _LINUX_CRC4_H
  #define _LINUX_CRC4_H
  
  #include <linux/types.h>
  
  extern uint8_t crc4(uint8_t c, uint64_t x, int bits);
  
  #endif /* _LINUX_CRC4_H */