diff options
| author | Mario Six <[email protected]> | 2019-01-21 09:18:16 +0100 |
|---|---|---|
| committer | Mario Six <[email protected]> | 2019-05-21 07:52:33 +0200 |
| commit | 133ec602846d28a7915a7b3149d05d1c8a270873 (patch) | |
| tree | 507157ce06ed8113cb03196d664e5d28eecac486 /drivers | |
| parent | 8a81bfd271f9122933c865c790780024f5e2d576 (diff) | |
mpc83xx: Get rid of CONFIG_SYS_DDR_SDRAM_BASE
CONFIG_SYS_DDR_SDRAM_BASE is set to the same value as
CONFIG_SYS_SDRAM_BASE on all existing boards. Just use
CONFIG_SYS_SDRAM_BASE instead.
Signed-off-by: Mario Six <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/ddr/fsl/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ddr/fsl/main.c b/drivers/ddr/fsl/main.c index 6d018fde2b2..e1f69a1d25c 100644 --- a/drivers/ddr/fsl/main.c +++ b/drivers/ddr/fsl/main.c @@ -23,8 +23,12 @@ * 0x80_8000_0000 ~ 0xff_ffff_ffff */ #ifndef CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY +#ifdef CONFIG_MPC83xx +#define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY CONFIG_SYS_SDRAM_BASE +#else #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY CONFIG_SYS_DDR_SDRAM_BASE #endif +#endif #ifdef CONFIG_PPC #include <asm/fsl_law.h> |
