mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:18:58 +00:00
03325e9b64
Convert CRC-32 LE variants to C. Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
13 lines
359 B
C
13 lines
359 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _CRC32_VX_S390_H
|
|
#define _CRC32_VX_S390_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
u32 crc32_be_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
|
|
u32 crc32_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
|
|
u32 crc32c_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
|
|
|
|
#endif /* _CRC32_VX_S390_H */
|