]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/crc32c.h
ACPI: fix acpi_find_child_device() invocation in acpi_preset_companion()
[mirror_ubuntu-bionic-kernel.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);
1da177e4 8
0426c166
HX
9/* This macro exists for backwards-compatibility. */
10#define crc32c_le crc32c
11
1da177e4 12#endif /* _LINUX_CRC32C_H */