cregit-Linux how code gets into the kernel

Release 4.8 arch/mips/lib/bswapsi.c

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


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

Contributors

PersonTokensPropCommitsCommitProp
ralf baechleralf baechle5998.33%150.00%
harvey huntharvey hunt11.67%150.00%
Total60100.00%2100.00%

EXPORT_SYMBOL(__bswapsi2);

Overall Contributors

PersonTokensPropCommitsCommitProp
ralf baechleralf baechle6798.53%150.00%
harvey huntharvey hunt11.47%150.00%
Total68100.00%2100.00%
Directory: arch/mips/lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.