Release 4.14 arch/mips/lib/bswapsi.c
// 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
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 59 | 98.33% | 1 | 50.00% |
Harvey Hunt | 1 | 1.67% | 1 | 50.00% |
Total | 60 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL(__bswapsi2);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 66 | 91.67% | 1 | 25.00% |
Paul Gortmaker | 4 | 5.56% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 1.39% | 1 | 25.00% |
Harvey Hunt | 1 | 1.39% | 1 | 25.00% |
Total | 72 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.