cregit-Linux how code gets into the kernel

Release 4.14 include/linux/crc7.h

Directory: include/linux
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_CRC7_H

#define _LINUX_CRC7_H
#include <linux/types.h>

extern const u8 crc7_be_syndrome_table[256];


static inline u8 crc7_be_byte(u8 crc, u8 data) { return crc7_be_syndrome_table[crc ^ data]; }

Contributors

PersonTokensPropCommitsCommitProp
Jan Nikitenko1990.48%150.00%
George Spelvin29.52%150.00%
Total21100.00%2100.00%

extern u8 crc7_be(u8 crc, const u8 *buffer, size_t len); #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Jan Nikitenko5291.23%133.33%
George Spelvin47.02%133.33%
Greg Kroah-Hartman11.75%133.33%
Total57100.00%3100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.