cregit-Linux how code gets into the kernel

Release 4.7 include/linux/crc7.h

Directory: include/linux
#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 nikitenkojan nikitenko1990.48%150.00%
george spelvingeorge 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 nikitenkojan nikitenko5292.86%150.00%
george spelvingeorge spelvin47.14%150.00%
Total56100.00%2100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}