cregit-Linux how code gets into the kernel

Release 4.11 arch/mips/lib/bswapsi.c

Directory: arch/mips/lib
#include <linux/export.h>
#include <linux/compiler.h>


unsigned int notrace __bswapsi2(unsigned int u) { return (((u) & 0xff000000) >> 24) | (((u) & 0x00ff0000) >> 8) | (((u) & 0x0000ff00) << 8) | (((u) & 0x000000ff) << 24); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle5998.33%150.00%
Harvey Hunt11.67%150.00%
Total60100.00%2100.00%

EXPORT_SYMBOL(__bswapsi2);

Overall Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle6692.96%133.33%
Paul Gortmaker45.63%133.33%
Harvey Hunt11.41%133.33%
Total71100.00%3100.00%
Directory: arch/mips/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.