Release 4.14 arch/mips/lib/bswapdi.c
// SPDX-License-Identifier: GPL-2.0
#include <linux/export.h>
#include <linux/compiler.h>
unsigned long long notrace __bswapdi2(unsigned long long u)
{
return (((u) & 0xff00000000000000ull) >> 56) |
(((u) & 0x00ff000000000000ull) >> 40) |
(((u) & 0x0000ff0000000000ull) >> 24) |
(((u) & 0x000000ff00000000ull) >> 8) |
(((u) & 0x00000000ff000000ull) << 8) |
(((u) & 0x0000000000ff0000ull) << 24) |
(((u) & 0x000000000000ff00ull) << 40) |
(((u) & 0x00000000000000ffull) << 56);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 109 | 99.09% | 1 | 50.00% |
Harvey Hunt | 1 | 0.91% | 1 | 50.00% |
Total | 110 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL(__bswapdi2);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 116 | 95.08% | 1 | 25.00% |
Paul Gortmaker | 4 | 3.28% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 0.82% | 1 | 25.00% |
Harvey Hunt | 1 | 0.82% | 1 | 25.00% |
Total | 122 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.