2026-01-21 18:59:54 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
#include <linux/export.h>
|
|
|
|
|
#include <linux/compiler.h>
|
2026-01-29 22:25:33 +08:00
|
|
|
#include <uapi/linux/swab.h>
|
|
|
|
|
|
|
|
|
|
/* To silence -Wmissing-prototypes. */
|
|
|
|
|
unsigned int __bswapsi2(unsigned int u);
|
2026-01-21 18:59:54 +08:00
|
|
|
|
|
|
|
|
unsigned int notrace __bswapsi2(unsigned int u)
|
|
|
|
|
{
|
2026-01-29 22:25:33 +08:00
|
|
|
return ___constant_swab32(u);
|
2026-01-21 18:59:54 +08:00
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL(__bswapsi2);
|