diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-02 16:42:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-22 10:31:48 -0500 |
commit | 829e9d223657f5779668bb7a46e902a85e09b664 (patch) | |
tree | 1eb0a7342b37799fb8134c0c3a463dca76b951f7 /include/configs/P1010RDB.h | |
parent | 2cc61a631bb8ae1acfadac9840abaa803091b7ac (diff) | |
download | u-boot-829e9d223657f5779668bb7a46e902a85e09b664.tar.gz u-boot-829e9d223657f5779668bb7a46e902a85e09b664.tar.bz2 u-boot-829e9d223657f5779668bb7a46e902a85e09b664.zip |
ddr: fsl: Remove CONFIG_MEM_INIT_VALUE
The way all of the memory init code here works is that we pass
0xDEADBEEF around for the initial value (as it's a well known 'poison'
value and so easily recognized in debuggers, etc). The only point of
this CONFIG symbol was to pass in a different value for that purpose.
Drop this symbol and cleanup the code slightly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/P1010RDB.h')
-rw-r--r-- | include/configs/P1010RDB.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/configs/P1010RDB.h b/include/configs/P1010RDB.h index c398ece784..2267a7a9c8 100644 --- a/include/configs/P1010RDB.h +++ b/include/configs/P1010RDB.h @@ -98,8 +98,6 @@ /* DDR Setup */ #define SPD_EEPROM_ADDRESS 0x52 -#define CONFIG_MEM_INIT_VALUE 0xDeadBeef - #ifndef __ASSEMBLY__ extern unsigned long get_sdram_size(void); #endif |