global: Move from bi_memstart/memsize -> gd->ram_base/ram_size

With the planned removal of bi_memstart & bi_memsize, this patch now
moves the references to the better suiting gd->ram_base/ram_size
variables.

Signed-off-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Stefan Roese
2020-08-12 13:16:36 +02:00
parent f120aa7522
commit e207f2256f
14 changed files with 19 additions and 19 deletions

View File

@@ -348,7 +348,7 @@ int do_bedbug_stack(struct cmd_tbl *cmdtp, int flag, int argc,
return 1;
}
top = gd->bd->bi_memstart + gd->bd->bi_memsize;
top = gd->ram_start + gd->ram_size;
depth = 0;
printf ("Depth PC\n");