Release 4.17 include/linux/crc32c.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_CRC32C_H
#define _LINUX_CRC32C_H
#include <linux/types.h>
extern u32 crc32c(u32 crc, const void *address, unsigned int length);
extern const char *crc32c_impl(void);
/* This macro exists for backwards-compatibility. */
#define crc32c_le crc32c
#endif /* _LINUX_CRC32C_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Clay Haapala | 26 | 59.09% | 1 | 20.00% |
Nikolay Borisov | 9 | 20.45% | 1 | 20.00% |
Herbert Xu | 8 | 18.18% | 2 | 40.00% |
Greg Kroah-Hartman | 1 | 2.27% | 1 | 20.00% |
Total | 44 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.