Staging
v0.5.1
swh:1:snp:a902887e4be9191b7c6c4406aa06b31c1ce2c7cc
Raw File
Tip revision: b2d229d4ddb17db541098b83524d901257e93845 authored by Linus Torvalds on 17 April 2022, 20:57:31 UTC
Linux 5.18-rc3
Tip revision: b2d229d
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);
}

EXPORT_SYMBOL(__bswapdi2);
back to top