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