aboutsummaryrefslogtreecommitdiff
path: root/arch/powerpc/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-12-04 10:04:50 -0500
committerTom Rini <trini@konsulko.com>2022-12-23 10:14:51 -0500
commit1d457dbb9151f50176f7548d00ed37e13dc81e00 (patch)
tree8474cd282db65dc7735f6631effd84dbbc143581 /arch/powerpc/include
parentdd5b58c49129016a02e41d6fda2213888d13c115 (diff)
downloadu-boot-1d457dbb9151f50176f7548d00ed37e13dc81e00.zip
u-boot-1d457dbb9151f50176f7548d00ed37e13dc81e00.tar.gz
u-boot-1d457dbb9151f50176f7548d00ed37e13dc81e00.tar.bz2
global: Migrate CONFIG_MAX_MEM_MAPPED to CFG
Perform a simple rename of CONFIG_MAX_MEM_MAPPED to CFG_MAX_MEM_MAPPED Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r--arch/powerpc/include/asm/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/include/asm/config.h b/arch/powerpc/include/asm/config.h
index 983c6f7..f0702ca 100644
--- a/arch/powerpc/include/asm/config.h
+++ b/arch/powerpc/include/asm/config.h
@@ -14,13 +14,13 @@
#define HWCONFIG_BUFFER_SIZE 256
#endif
-#ifndef CONFIG_MAX_MEM_MAPPED
+#ifndef CFG_MAX_MEM_MAPPED
#if defined(CONFIG_E500) || \
defined(CONFIG_MPC86xx) || \
defined(CONFIG_E300)
-#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
+#define CFG_MAX_MEM_MAPPED ((phys_size_t)2 << 30)
#else
-#define CONFIG_MAX_MEM_MAPPED (256 << 20)
+#define CFG_MAX_MEM_MAPPED (256 << 20)
#endif
#endif