cregit-Linux how code gets into the kernel

Release 4.14 arch/mips/lib/bswapsi.c

Directory: arch/mips/lib
// SPDX-License-Identifier: GPL-2.0
#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ächle6691.67%125.00%
Paul Gortmaker45.56%125.00%
Greg Kroah-Hartman11.39%125.00%
Harvey Hunt11.39%125.00%
Total72100.00%4100.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.