|
@@ -174,7 +174,7 @@ void board_init_f(ulong bootflag)
|
|
|
mem = os_malloc(CONFIG_SYS_SDRAM_SIZE);
|
|
|
|
|
|
assert(mem);
|
|
|
- gd->ram_buf = mem;
|
|
|
+ gd->arch.ram_buf = mem;
|
|
|
addr = (ulong)(mem + size);
|
|
|
|
|
|
/*
|
|
@@ -227,8 +227,8 @@ void board_init_r(gd_t *id, ulong dest_addr)
|
|
|
#endif
|
|
|
|
|
|
/* The Malloc area is at the top of simulated DRAM */
|
|
|
- mem_malloc_init((ulong)gd->ram_buf + gd->ram_size - TOTAL_MALLOC_LEN,
|
|
|
- TOTAL_MALLOC_LEN);
|
|
|
+ mem_malloc_init((ulong)gd->arch.ram_buf + gd->ram_size -
|
|
|
+ TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN);
|
|
|
|
|
|
/* initialize environment */
|
|
|
env_relocate();
|