diff options
author | Fabio Estevam | 2016-07-23 13:23:39 -0300 |
---|---|---|
committer | Stefano Babic | 2016-07-28 13:27:20 +0200 |
commit | 84c51687a79c4bac514c43c0c3a0118015e6b13c (patch) | |
tree | e05c7325855ec86fb52bff57d273f62780b7200a /board/aristainetos | |
parent | a13d3757f7df25d0f017e85551b899d598ad1bdb (diff) |
aristainetos: Use imx_ddr_size() for calculating the DDR size
imx_ddr_size() can be used to calculate the DDR size in runtime.
By using this function we no longer need to define PHYS_SDRAM_SIZE.
Cc: Heiko Schocher <hs@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board/aristainetos')
-rw-r--r-- | board/aristainetos/aristainetos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/aristainetos/aristainetos.c b/board/aristainetos/aristainetos.c index e95ec81760f..d1e6850636a 100644 --- a/board/aristainetos/aristainetos.c +++ b/board/aristainetos/aristainetos.c @@ -102,7 +102,7 @@ iomux_v3_cfg_t const usdhc1_pads[] = { int dram_init(void) { - gd->ram_size = get_ram_size((void *)PHYS_SDRAM, PHYS_SDRAM_SIZE); + gd->ram_size = imx_ddr_size(); return 0; } |