mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
4cdb71b6ba
Commit ddb5cdbafa
("kbuild: generate KSYMTAB entries by modpost")
deprecated <asm/export.h>, which is now a wrapper of <linux/export.h>.
Replace #include <asm/export.h> with #include <linux/export.h>.
After all the <asm/export.h> lines are converted, <asm/export.h> and
<asm-generic/export.h> will be removed.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
58 lines
1.2 KiB
ArmAsm
58 lines
1.2 KiB
ArmAsm
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/export.h>
|
|
#include <linux/linkage.h>
|
|
|
|
.text
|
|
.align 32
|
|
ENTRY(__arch_hweight8)
|
|
sethi %hi(__sw_hweight8), %g1
|
|
jmpl %g1 + %lo(__sw_hweight8), %g0
|
|
nop
|
|
ENDPROC(__arch_hweight8)
|
|
EXPORT_SYMBOL(__arch_hweight8)
|
|
.section .popc_3insn_patch, "ax"
|
|
.word __arch_hweight8
|
|
sllx %o0, 64-8, %g1
|
|
retl
|
|
popc %g1, %o0
|
|
.previous
|
|
|
|
ENTRY(__arch_hweight16)
|
|
sethi %hi(__sw_hweight16), %g1
|
|
jmpl %g1 + %lo(__sw_hweight16), %g0
|
|
nop
|
|
ENDPROC(__arch_hweight16)
|
|
EXPORT_SYMBOL(__arch_hweight16)
|
|
.section .popc_3insn_patch, "ax"
|
|
.word __arch_hweight16
|
|
sllx %o0, 64-16, %g1
|
|
retl
|
|
popc %g1, %o0
|
|
.previous
|
|
|
|
ENTRY(__arch_hweight32)
|
|
sethi %hi(__sw_hweight32), %g1
|
|
jmpl %g1 + %lo(__sw_hweight32), %g0
|
|
nop
|
|
ENDPROC(__arch_hweight32)
|
|
EXPORT_SYMBOL(__arch_hweight32)
|
|
.section .popc_3insn_patch, "ax"
|
|
.word __arch_hweight32
|
|
sllx %o0, 64-32, %g1
|
|
retl
|
|
popc %g1, %o0
|
|
.previous
|
|
|
|
ENTRY(__arch_hweight64)
|
|
sethi %hi(__sw_hweight64), %g1
|
|
jmpl %g1 + %lo(__sw_hweight64), %g0
|
|
nop
|
|
ENDPROC(__arch_hweight64)
|
|
EXPORT_SYMBOL(__arch_hweight64)
|
|
.section .popc_3insn_patch, "ax"
|
|
.word __arch_hweight64
|
|
retl
|
|
popc %o0, %o0
|
|
nop
|
|
.previous
|