Merge tag 'gpio-v4.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6-block.git] / include / linux / crc32c.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_CRC32C_H
3#define _LINUX_CRC32C_H
4
5#include <linux/types.h>
6
69c35efc 7extern u32 crc32c(u32 crc, const void *address, unsigned int length);
df91f56a 8extern const char *crc32c_impl(void);
1da177e4 9
0426c166
HX
10/* This macro exists for backwards-compatibility. */
11#define crc32c_le crc32c
12
1da177e4 13#endif /* _LINUX_CRC32C_H */