[PATCH v2 1/2] Kconfig: move CONFIG_32/64BIT to arch/Kconfig
Dan Carpenter
dan.carpenter at linaro.org
Mon Mar 4 08:04:15 CET 2024
These configs are used in multiple places so put them in a shared
Kconfig file.
Signed-off-by: Dan Carpenter <dan.carpenter at linaro.org>
---
v2: split the patch into two patches
arch/Kconfig | 6 ++++++
arch/mips/Kconfig | 6 ------
arch/riscv/Kconfig | 6 ------
3 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/arch/Kconfig b/arch/Kconfig
index b6fb9e927337..70f3b85b449a 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -20,6 +20,12 @@ config SYS_CACHE_SHIFT_6
config SYS_CACHE_SHIFT_7
bool
+config 32BIT
+ bool
+
+config 64BIT
+ bool
+
config SYS_CACHELINE_SIZE
int
default 128 if SYS_CACHE_SHIFT_7
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index f0704d97f79b..eb7f3ad23762 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -473,12 +473,6 @@ config MIPS_TUNE_74KC
config MIPS_TUNE_OCTEON3
bool
-config 32BIT
- bool
-
-config 64BIT
- bool
-
config SWAP_IO_SPACE
bool
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index ac52c5e6dafa..6c26f91f1669 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -288,12 +288,6 @@ endmenu
config RISCV_ISA_A
def_bool y
-config 32BIT
- bool
-
-config 64BIT
- bool
-
config DMA_ADDR_T_64BIT
bool
default y if 64BIT
--
2.43.0
More information about the U-Boot
mailing list