xref: /linux/lib/crc/s390/crc32-vx.h (revision a578dd095dfe8b56c167201d9aea43e47d27f807)
1*2374bf23SEric Biggers /* SPDX-License-Identifier: GPL-2.0 */
2*2374bf23SEric Biggers 
3*2374bf23SEric Biggers #ifndef _CRC32_VX_S390_H
4*2374bf23SEric Biggers #define _CRC32_VX_S390_H
5*2374bf23SEric Biggers 
6*2374bf23SEric Biggers #include <linux/types.h>
7*2374bf23SEric Biggers 
8*2374bf23SEric Biggers u32 crc32_be_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
9*2374bf23SEric Biggers u32 crc32_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
10*2374bf23SEric Biggers u32 crc32c_le_vgfm_16(u32 crc, unsigned char const *buf, size_t size);
11*2374bf23SEric Biggers 
12*2374bf23SEric Biggers #endif /* _CRC32_VX_S390_H */
13