summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib/bswapdi.c
blob: 1d020e1c96a0856299e19bdd19eb4e7403862d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-2.0
#include <linux/export.h>
#include <linux/compiler.h>

/* To silence -Wmissing-prototypes. */
unsigned long long __bswapdi2(unsigned long long u);

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);
}
EXPORT_SYMBOL(__bswapdi2);