mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
338d915090
Move assembly source prototypes from xtensa_ksyms.c to asm/asm-prototypes.h, move corresponding EXPORT_SYMBOLs to the assembly sources and enable HAVE_ASM_MODVERSIONS for xtensa. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
18 lines
322 B
ArmAsm
18 lines
322 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 */
|
|
#include <linux/linkage.h>
|
|
#include <asm/asmmacro.h>
|
|
#include <asm/core.h>
|
|
|
|
ENTRY(__bswapsi2)
|
|
|
|
abi_entry_default
|
|
ssai 8
|
|
srli a3, a2, 16
|
|
src a3, a3, a2
|
|
src a3, a3, a3
|
|
src a2, a2, a3
|
|
abi_ret_default
|
|
|
|
ENDPROC(__bswapsi2)
|
|
EXPORT_SYMBOL(__bswapsi2)
|