Skip to content
Snippets Groups Projects
Commit e81cdc03 authored by Simon Glass's avatar Simon Glass Committed by Albert ARIBAUD
Browse files

tegra2: Remove unneeded 'dynamic ram size' message


This message is not required, since it is followed by an 'official' U-Boot
message.

U-Boot 2011.03-00048-gd7cb0d3 (May 11 2011 - 17:17:23)

TEGRA2
Board: NVIDIA Seaboard
dynamic ram_size = 1073741824
DRAM:  1 GiB

becomes:

TEGRA2
Board: NVIDIA Seaboard
DRAM:  1 GiB

This is a separate commit since it changes behavior.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent 4c7447df
No related branches found
No related tags found
No related merge requests found
...@@ -65,10 +65,8 @@ int dram_init(void) ...@@ -65,10 +65,8 @@ int dram_init(void)
/* Now check it dynamically */ /* Now check it dynamically */
rs = get_ram_size(CONFIG_SYS_SDRAM_BASE, gd->ram_size); rs = get_ram_size(CONFIG_SYS_SDRAM_BASE, gd->ram_size);
if (rs) { if (rs)
printf("dynamic ram_size = %lu\n", rs);
gd->bd->bi_dram[0].size = gd->ram_size = rs; gd->bd->bi_dram[0].size = gd->ram_size = rs;
}
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment