Commit e3d59805 authored by Matt Redfearn's avatar Matt Redfearn Committed by James Hogan

lib: Rename compiler intrinsic selects to GENERIC_LIB_*

When these are included into arch Kconfig files, maintaining
alphabetical ordering of the selects means these get split up. To allow
for keeping things tidier and alphabetical, rename the selects to
GENERIC_LIB_*
Signed-off-by: default avatarMatt Redfearn <matt.redfearn@mips.com>
Acked-by: default avatarPalmer Dabbelt <palmer@sifive.com>
Cc: Antony Pavlov <antonynpavlov@gmail.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-riscv@lists.infradead.org
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/19049/Signed-off-by: default avatarJames Hogan <jhogan@kernel.org>
parent aad5a537
...@@ -105,9 +105,9 @@ config ARCH_RV32I ...@@ -105,9 +105,9 @@ config ARCH_RV32I
bool "RV32I" bool "RV32I"
select CPU_SUPPORTS_32BIT_KERNEL select CPU_SUPPORTS_32BIT_KERNEL
select 32BIT select 32BIT
select GENERIC_ASHLDI3 select GENERIC_LIB_ASHLDI3
select GENERIC_ASHRDI3 select GENERIC_LIB_ASHRDI3
select GENERIC_LSHRDI3 select GENERIC_LIB_LSHRDI3
config ARCH_RV64I config ARCH_RV64I
bool "RV64I" bool "RV64I"
......
...@@ -604,20 +604,20 @@ config STRING_SELFTEST ...@@ -604,20 +604,20 @@ config STRING_SELFTEST
endmenu endmenu
config GENERIC_ASHLDI3 config GENERIC_LIB_ASHLDI3
bool bool
config GENERIC_ASHRDI3 config GENERIC_LIB_ASHRDI3
bool bool
config GENERIC_LSHRDI3 config GENERIC_LIB_LSHRDI3
bool bool
config GENERIC_MULDI3 config GENERIC_LIB_MULDI3
bool bool
config GENERIC_CMPDI2 config GENERIC_LIB_CMPDI2
bool bool
config GENERIC_UCMPDI2 config GENERIC_LIB_UCMPDI2
bool bool
...@@ -259,9 +259,9 @@ obj-$(CONFIG_SBITMAP) += sbitmap.o ...@@ -259,9 +259,9 @@ obj-$(CONFIG_SBITMAP) += sbitmap.o
obj-$(CONFIG_PARMAN) += parman.o obj-$(CONFIG_PARMAN) += parman.o
# GCC library routines # GCC library routines
obj-$(CONFIG_GENERIC_ASHLDI3) += ashldi3.o obj-$(CONFIG_GENERIC_LIB_ASHLDI3) += ashldi3.o
obj-$(CONFIG_GENERIC_ASHRDI3) += ashrdi3.o obj-$(CONFIG_GENERIC_LIB_ASHRDI3) += ashrdi3.o
obj-$(CONFIG_GENERIC_LSHRDI3) += lshrdi3.o obj-$(CONFIG_GENERIC_LIB_LSHRDI3) += lshrdi3.o
obj-$(CONFIG_GENERIC_MULDI3) += muldi3.o obj-$(CONFIG_GENERIC_LIB_MULDI3) += muldi3.o
obj-$(CONFIG_GENERIC_CMPDI2) += cmpdi2.o obj-$(CONFIG_GENERIC_LIB_CMPDI2) += cmpdi2.o
obj-$(CONFIG_GENERIC_UCMPDI2) += ucmpdi2.o obj-$(CONFIG_GENERIC_LIB_UCMPDI2) += ucmpdi2.o
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment