diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-04 10:04:50 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 10:14:51 -0500 |
commit | 1d457dbb9151f50176f7548d00ed37e13dc81e00 (patch) | |
tree | 8474cd282db65dc7735f6631effd84dbbc143581 /include/configs/rcar-gen3-common.h | |
parent | dd5b58c49129016a02e41d6fda2213888d13c115 (diff) | |
download | u-boot-1d457dbb9151f50176f7548d00ed37e13dc81e00.tar.gz u-boot-1d457dbb9151f50176f7548d00ed37e13dc81e00.tar.bz2 u-boot-1d457dbb9151f50176f7548d00ed37e13dc81e00.zip |
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 'include/configs/rcar-gen3-common.h')
-rw-r--r-- | include/configs/rcar-gen3-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rcar-gen3-common.h b/include/configs/rcar-gen3-common.h index 8e0837a302..213caa7523 100644 --- a/include/configs/rcar-gen3-common.h +++ b/include/configs/rcar-gen3-common.h @@ -28,7 +28,7 @@ #define DRAM_RSV_SIZE 0x08000000 #define CFG_SYS_SDRAM_BASE (0x40000000 + DRAM_RSV_SIZE) #define CFG_SYS_SDRAM_SIZE (0x80000000u - DRAM_RSV_SIZE) -#define CONFIG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE) +#define CFG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE) /* ENV setting */ |