3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-22 07:05:54 +00:00
Brooklyn/arch/mips/lib/bswapsi.c

14 lines
311 B
C
Raw Normal View History

2022-04-02 18:08:56 +05:00
// SPDX-License-Identifier: GPL-2.0
#include <linux/export.h>
#include <linux/compiler.h>
2022-12-14 10:45:59 +05:00
#include <uapi/linux/swab.h>
/* To silence -Wmissing-prototypes. */
unsigned int __bswapsi2(unsigned int u);
2022-04-02 18:08:56 +05:00
unsigned int notrace __bswapsi2(unsigned int u)
{
2022-12-14 10:45:59 +05:00
return ___constant_swab32(u);
2022-04-02 18:08:56 +05:00
}
EXPORT_SYMBOL(__bswapsi2);