aboutsummaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-10-26 08:09:00 -0600
committerTom Rini <trini@konsulko.com>2024-11-16 19:49:13 -0600
commite2032a0e4e55ea0958aae32f783f3a0726e34415 (patch)
tree7762192552c5d54fb75b51c95f9b07d8c1aa395e /api
parentcae243927f67f81ff7456906bb6018b93e1c28f3 (diff)
downloadu-boot-e2032a0e4e55ea0958aae32f783f3a0726e34415.tar.gz
global: Remove bi_sramstart/bi_sramsize
These fields are currently set on exactly two platforms today, and used by only one of them. Update pic32mzdask to use CFG_SYS_SRAM* in the one location it needs it and otherwise drop this field from the bd_info struct. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'api')
-rw-r--r--api/api_platform-powerpc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/api_platform-powerpc.c b/api/api_platform-powerpc.c
index 3a04a9f691c..2c1ab043af6 100644
--- a/api/api_platform-powerpc.c
+++ b/api/api_platform-powerpc.c
@@ -43,7 +43,6 @@ int platform_sys_info(struct sys_info *si)
platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM);
platform_set_mr(si, gd->bd->bi_flashstart, gd->bd->bi_flashsize, MR_ATTR_FLASH);
- platform_set_mr(si, gd->bd->bi_sramstart, gd->bd->bi_sramsize, MR_ATTR_SRAM);
return 1;
}